diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2012-07-03 15:08:48 +0300 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2012-07-05 23:38:58 +0300 |
commit | 275c6b1a2b8d757fe24257636be140face6f6723 (patch) | |
tree | cc4f9a4a1c4daf2c4a5600087904b1b47984ec3c | |
parent | 6f744980b5cbad1f94cc44ae6d3c4f106e58f931 (diff) | |
download | meta-raspberrypi-275c6b1a2b8d757fe24257636be140face6f6723.tar.gz |
bcm2835-kernel-image: Remove recipe as bootloader can boot from Image directly
There is no need for a mangled kernel image anymore. Precompiled RPI Bootloader
can boot an uncompressed kernel image.
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r-- | recipes-bcm/kernel-image/bcm2835-kernel-image.bb | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/recipes-bcm/kernel-image/bcm2835-kernel-image.bb b/recipes-bcm/kernel-image/bcm2835-kernel-image.bb deleted file mode 100644 index 085cd01..0000000 --- a/recipes-bcm/kernel-image/bcm2835-kernel-image.bb +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | DESCRIPTION = "Helper recipe to make the munged kernel.img image for the RaspberryPi." | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | ||
4 | |||
5 | COMPATIBLE_MACHINE = "raspberrypi" | ||
6 | PR = "${MACHINE_KERNEL_PR}.2" | ||
7 | |||
8 | DEPENDS = "bcm2835-bootfiles bcm2835-mkimage-native virtual/kernel" | ||
9 | |||
10 | S = "${WORKDIR}" | ||
11 | |||
12 | addtask deploy before do_package after do_install | ||
13 | |||
14 | do_deploy() { | ||
15 | install -d ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles | ||
16 | bcm2835-mkimage.py ${DEPLOY_DIR_IMAGE}/zImage-${MACHINE}.bin ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles/kernel.img ${STAGING_BINDIR_NATIVE}/ | ||
17 | } | ||
18 | |||
19 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||