From 399d2c85d6f5621923d481c62e02fdcf185feeb0 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 13 Mar 2008 10:27:46 +0000 Subject: linux-handhelds-2.6: Remove unused keep-initramfs.patch. --- .../linux/linux-handhelds-2.6-2.6.21/keep-initramfs.patch | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 packages/linux/linux-handhelds-2.6-2.6.21/keep-initramfs.patch (limited to 'packages') diff --git a/packages/linux/linux-handhelds-2.6-2.6.21/keep-initramfs.patch b/packages/linux/linux-handhelds-2.6-2.6.21/keep-initramfs.patch deleted file mode 100644 index b503a6326a..0000000000 --- a/packages/linux/linux-handhelds-2.6-2.6.21/keep-initramfs.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- /tmp/Makefile 2008-03-08 11:13:58.939360172 +0100 -+++ kernel26/usr/Makefile 2008-03-08 11:14:03.270190232 +0100 -@@ -34,7 +34,7 @@ - endif - - quiet_cmd_initfs = GEN $@ -- cmd_initfs = $(initramfs) -o $@ $(ramfs-args) $(ramfs-input) -+ cmd_initfs = echo - - targets := initramfs_data.cpio.gz - # do not try to update files included in initramfs -- cgit v1.2.3 From 21af76526a4c0ad05348de8a7fb10c6b0d226f95 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 14 Mar 2008 08:27:48 +0000 Subject: linux/linux-handhelds-2.6: Readd check that ${KERNEL_INITRAMFS_PATH} exists. --- packages/linux/linux-handhelds-2.6.inc | 5 +++++ packages/linux/linux-handhelds-2.6_2.6.21-hh20.bb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'packages') diff --git a/packages/linux/linux-handhelds-2.6.inc b/packages/linux/linux-handhelds-2.6.inc index 5970ace054..48e49115f0 100644 --- a/packages/linux/linux-handhelds-2.6.inc +++ b/packages/linux/linux-handhelds-2.6.inc @@ -38,6 +38,11 @@ do_configure() { fi if [ -n "${KERNEL_INITRAMFS_PATH}" -a "${ANGSTROM_MODE}" = "glibc" ]; then + if [ ! -f ${KERNEL_INITRAMFS_PATH} ]; then + echo "${KERNEL_INITRAMFS_PATH} does not exist, you may need to bitbake it separately" + exit 1 + fi + # Kernel expects non-compressed cpio gzip -d -c ${KERNEL_INITRAMFS_PATH} >${WORKDIR}/initramfs.cpio echo "CONFIG_INITRAMFS_SOURCE=\"${WORKDIR}/initramfs.cpio\"" >> ${S}/.config diff --git a/packages/linux/linux-handhelds-2.6_2.6.21-hh20.bb b/packages/linux/linux-handhelds-2.6_2.6.21-hh20.bb index 9d493c3212..3df1102761 100644 --- a/packages/linux/linux-handhelds-2.6_2.6.21-hh20.bb +++ b/packages/linux/linux-handhelds-2.6_2.6.21-hh20.bb @@ -1,7 +1,7 @@ SECTION = "kernel" DESCRIPTION = "handhelds.org Linux kernel 2.6 for PocketPCs and other consumer handheld devices." LICENSE = "GPL" -PR = "r19" +PR = "r20" DEFAULT_PREFERENCE = "-1" -- cgit v1.2.3