diff options
author | Baruch Siach <baruch@tkos.co.il> | 2017-01-26 07:36:05 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-01-26 22:35:05 +0100 |
commit | 5a09c1990808908416b6435e24a2ee10d7b3d7d3 (patch) | |
tree | dc793702c784d2c1508d6a26e1b1a39649cc27d4 | |
parent | f9a6a2df56012b2ee6d171ca9371910c668bfa78 (diff) |
board: raspberrypi: use regular kernel image
Since release 4.4 a kernel without a trailer is assumed to be device tree
capable. Since our Raspberry Pi defconfigs all use the newer firmware we can
just use the regular kernel image.
https://www.raspberrypi.org/documentation/configuration/device-tree.md
Tested on Raspberry Pi 3.
Cc: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | board/raspberrypi/genimage-raspberrypi.cfg | 2 | ||||
-rw-r--r-- | board/raspberrypi/genimage-raspberrypi0.cfg | 2 | ||||
-rw-r--r-- | board/raspberrypi/genimage-raspberrypi2.cfg | 2 | ||||
-rw-r--r-- | board/raspberrypi/genimage-raspberrypi3.cfg | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/board/raspberrypi/genimage-raspberrypi.cfg b/board/raspberrypi/genimage-raspberrypi.cfg index 74758f5e2..bd5166a0f 100644 --- a/board/raspberrypi/genimage-raspberrypi.cfg +++ b/board/raspberrypi/genimage-raspberrypi.cfg @@ -9,7 +9,7 @@ image boot.vfat { "rpi-firmware/config.txt", "rpi-firmware/fixup.dat", "rpi-firmware/start.elf", - "kernel-marked/zImage" + "zImage" } } size = 32M diff --git a/board/raspberrypi/genimage-raspberrypi0.cfg b/board/raspberrypi/genimage-raspberrypi0.cfg index a38840c82..a9d4c4501 100644 --- a/board/raspberrypi/genimage-raspberrypi0.cfg +++ b/board/raspberrypi/genimage-raspberrypi0.cfg @@ -7,7 +7,7 @@ image boot.vfat { "rpi-firmware/config.txt", "rpi-firmware/fixup.dat", "rpi-firmware/start.elf", - "kernel-marked/zImage" + "zImage" } } size = 32M diff --git a/board/raspberrypi/genimage-raspberrypi2.cfg b/board/raspberrypi/genimage-raspberrypi2.cfg index 443c82187..a3be2a344 100644 --- a/board/raspberrypi/genimage-raspberrypi2.cfg +++ b/board/raspberrypi/genimage-raspberrypi2.cfg @@ -7,7 +7,7 @@ image boot.vfat { "rpi-firmware/config.txt", "rpi-firmware/fixup.dat", "rpi-firmware/start.elf", - "kernel-marked/zImage" + "zImage" } } size = 32M diff --git a/board/raspberrypi/genimage-raspberrypi3.cfg b/board/raspberrypi/genimage-raspberrypi3.cfg index baab0c4cc..3c9f1e5e2 100644 --- a/board/raspberrypi/genimage-raspberrypi3.cfg +++ b/board/raspberrypi/genimage-raspberrypi3.cfg @@ -8,7 +8,7 @@ image boot.vfat { "rpi-firmware/fixup.dat", "rpi-firmware/start.elf", "rpi-firmware/overlays", - "kernel-marked/zImage" + "zImage" } } size = 32M |