diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-02-22 15:30:55 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-02-22 15:33:37 +0100 |
commit | 5c126258230b2490133ef2f6f9fffb1a6a4e6053 (patch) | |
tree | 51bc665a8b653a4ff675bdec1b782febd6526104 /mk | |
parent | f7e85105e77f72a1d779d9dd64231970bb91d3e0 (diff) |
raspberry-pi3: fix mini.config bootup
- cmdline.txt is not required with full device tree capable kernel
- force 270x option for mkknlimg trailer
- we need ext4 filesystem support in the kernel other filesystems are
rarely used at the moment
- ATAGS and CMDLINE_FROM_BOOTLOADER not required with device tree capable kernel
- overlay dtb files are renamed to dtbo suffix
Diffstat (limited to 'mk')
-rw-r--r-- | mk/rootfs.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/rootfs.mk b/mk/rootfs.mk index 0d273a30e..027c671b6 100644 --- a/mk/rootfs.mk +++ b/mk/rootfs.mk @@ -39,7 +39,7 @@ ifeq ($(ADK_TARGET_SYSTEM_SHARP_ZAURUS),y) BLOCKDEV:= root=/dev/sda1 endif -ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI),y) +ifeq ($(ADK_TARGET_BOARD_BCM28XX),y) BLOCKDEV:= root=/dev/mmcblk0p2 endif |