mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-02 13:53:01 +02:00
This commit consolidates all BSP support files into the Buildroot standard board/ directory. The concept of selectable boards in menuconfig remains as-is but now lives in board/ instead. Drop support for board-specific post-build.sh scripts, not needed atm. and we should really use Buildroot _POST_INSTALL_HOOKS in the board .mk files instead. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
26 lines
285 B
INI
26 lines
285 B
INI
image cfg.ext4 {
|
|
ext4 {
|
|
label = "cfg"
|
|
}
|
|
empty = true
|
|
size = 16M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
}
|
|
|
|
partition cfg {
|
|
partition-type = 0x83
|
|
image = "cfg.ext4"
|
|
}
|
|
}
|
|
|
|
# Silence genimage warnings
|
|
config {}
|