Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions board/aarch64/r2s/extlinux.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
label Infix on NanoPi R2S
kernel /boot/Image
devicetree /boot/rk3328-nanopi-r2s.dtb
append root=/dev/mmcblk0p1 rw rootwait bonding.max_bonds=0 dummy.numdummies=0 fb_tunnels=none quiet
38 changes: 38 additions & 0 deletions board/aarch64/r2s/genimage.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
image cfg.ext4 {
ext4 {
label = "cfg"
}
empty = true
size = 16M
}

image sdcard.img {
hdimage {
}

partition u-boot-tpl-spl-dtb {
in-partition-table = "no"
image = "idbloader.img"
offset = 32K
}

partition u-boot-dtb {
in-partition-table = "no"
image = "u-boot.itb"
offset = 8M
}

partition rootfs {
partition-type = 0x83
offset = 16M
image = "rootfs.ext4"
}

partition cfg {
partition-type = 0x83
image = "cfg.ext4"
}
}

# Silence genimage warnings
config {}
Loading