You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
368 B
19 lines
368 B
2 years ago
|
# Minimal SD card image for Boundary Devices platforms
|
||
|
#
|
||
|
# It does not need a boot section for a bootloader since it is booted
|
||
|
# from its NOR flash memory.
|
||
|
#
|
||
|
# To update the bootloader, execute the following from U-Boot prompt:
|
||
|
# => run upgradeu
|
||
|
|
||
|
image sdcard.img {
|
||
|
hdimage {
|
||
|
}
|
||
|
|
||
|
partition rootfs {
|
||
|
partition-type = 0x83
|
||
|
image = "rootfs.ext4"
|
||
|
size = 512M
|
||
|
}
|
||
|
}
|