diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-09-09 21:33:05 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-09-09 21:33:05 +0000 |
commit | f13935215c790b58ba20b0bd570802288bf3f0b2 (patch) | |
tree | e8fa473c18d1837f5f9241259d7577378560af6f /packages/linux/linux.inc | |
parent | 8a00555b71e47ee86e8449a8f44b7e16c3cef1ae (diff) |
linux: changed way of adding uboot-mkimage dependency so #2926 should be fixed
Something is wrong wen it comes to overrides and adding into variable - bug
#2966 opened.
Diffstat (limited to 'packages/linux/linux.inc')
-rw-r--r-- | packages/linux/linux.inc | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/packages/linux/linux.inc b/packages/linux/linux.inc index 05bfc2f472..97adebf678 100644 --- a/packages/linux/linux.inc +++ b/packages/linux/linux.inc @@ -2,18 +2,19 @@ DESCRIPTION = "Linux Kernel" SECTION = "kernel" LICENSE = "GPL" +inherit kernel + # These devices need mkimage to generate a kernel image -DEPENDS_kb9202 = "u-boot-mkimage-openmoko-native" -DEPENDS_at32stk1000 = "u-boot-mkimage-openmoko-native" -DEPENDS_atngw100 = "u-boot-mkimage-openmoko-native" -DEPENDS_at91sam9263ek = "u-boot-mkimage-openmoko-native" -DEPENDS_at91sam9261ek = "u-boot-mkimage-openmoko-native" -DEPENDS_at91sam9260ek = "u-boot-mkimage-openmoko-native" -DEPENDS_sarge-at91 = "u-boot-mkimage-openmoko-native" -DEPENDS_gumstix-connex = "u-boot-mkimage-openmoko-native" -DEPENDS_gumstix-verdex = "u-boot-mkimage-openmoko-native" +DEPENDS_append_kb9202 = " u-boot-mkimage-openmoko-native " +DEPENDS_append_at32stk1000 = " u-boot-mkimage-openmoko-native " +DEPENDS_append_atngw100 = " u-boot-mkimage-openmoko-native " +DEPENDS_append_at91sam9263ek = " u-boot-mkimage-openmoko-native " +DEPENDS_append_at91sam9261ek = " u-boot-mkimage-openmoko-native " +DEPENDS_append_at91sam9260ek = " u-boot-mkimage-openmoko-native " +DEPENDS_append_sarge-at91 = " u-boot-mkimage-openmoko-native " +DEPENDS_append_gumstix-connex = " u-boot-mkimage-openmoko-native " +DEPENDS_append_gumstix-verdex = " u-boot-mkimage-openmoko-native " -inherit kernel # Specify the commandline for you device here: @@ -63,7 +64,7 @@ do_install_prepend() { UBOOT_ENTRYPOINT ?= "20008000" -KERNEL_IMAGE_BASE_NAME = ${KERNEL_IMAGETYPE}-${PV}-${PR}-${MACHINE}-${DATETIME} +KERNEL_IMAGE_BASE_NAME = ${KERNEL_IMAGETYPE}-${KERNEL_RELEASE}-${PR}-${MACHINE}-${DATETIME} do_deploy() { install -d ${DEPLOY_DIR_IMAGE} |