blob: d3d9fc035cc40d38940c920a8846501c5600faeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
require linux.inc
DEPENDS += "android-image-utils-native"
PV = "2.6.32+${PR}+gitr${SRCREV}"
PR = "r20"
COMPATIBLE_MACHINE = "htcdream"
CMDLINE = "console=tty1 root=/dev/mmcblk0p1 rootdelay=8 fbcon=rotate:1 panic=30 mem=110M"
SRCREV = "1ee84e3fcdf91917842c150ded113c540ece1841"
SRC_URI = "\
git://gitorious.org/htc-msm-2-6-32/leviathan-incoming.git;protocol=git;branch=android-msm-2.6.32-rebase \
file://defconfig \
"
S = "${WORKDIR}/git"
do_deploy_append() {
if [ ! -e empty.gz ];then
if [ ! -e empty ];then
touch empty
fi
gzip empty
fi
mkbootimg --kernel ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin \
--ramdisk empty.gz \
--cmdline "${CMDLINE}" \
--output ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.fastboot
}
|