diff options
Diffstat (limited to 'target/aarch64/rockpi4-plus')
-rw-r--r-- | target/aarch64/rockpi4-plus/extlinux.conf | 4 | ||||
-rw-r--r-- | target/aarch64/rockpi4-plus/genimage.cfg | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/target/aarch64/rockpi4-plus/extlinux.conf b/target/aarch64/rockpi4-plus/extlinux.conf index 162cf49d7..b3737d9e2 100644 --- a/target/aarch64/rockpi4-plus/extlinux.conf +++ b/target/aarch64/rockpi4-plus/extlinux.conf @@ -1,4 +1,4 @@ label rockpi4-plus-openadk kernel /kernel - devicetree /rk3399-rock-pi-4c-plus.dtb - append console=ttyS2,115200n8 rw rootwait + devicetree /rk3399-rock-pi-4b.dtb + append console=ttyS2,115200n8 root=/dev/mmcblk0p4 rootwait diff --git a/target/aarch64/rockpi4-plus/genimage.cfg b/target/aarch64/rockpi4-plus/genimage.cfg index 6c93aa58c..18167daf0 100644 --- a/target/aarch64/rockpi4-plus/genimage.cfg +++ b/target/aarch64/rockpi4-plus/genimage.cfg @@ -2,17 +2,16 @@ image boot.vfat { vfat { files = { "kernel", - "rk3399-rock-pi-4c-plus.dtb", + "rk3399-rock-pi-4b.dtb", "extlinux" } } - size = 112M + size = 32M } image sdcard.img { hdimage { - partition-table-type = "gpt" } partition loader1 { @@ -26,14 +25,14 @@ image sdcard.img { } partition boot { - partition-type-uuid = F + partition-type = 0xC bootable = "true" image = "boot.vfat" offset = 16M } partition rootfs { - partition-type-uuid = b921b045-1df0-41c3-af44-4c6f280d3fae + partition-type = 0x83 image = "rootfs.ext" } } |