change nand to 256M

This commit is contained in:
hyx 2026-04-10 19:38:41 +08:00
parent 16ee54451d
commit 17972d0511
3 changed files with 3 additions and 2 deletions

View File

@ -17,6 +17,7 @@ BR2_SYSTEM_DEFAULT_PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin"
BR2_TARGET_ROOTFS_UBI=y BR2_TARGET_ROOTFS_UBI=y
BR2_TARGET_ROOTFS_UBIFS_MAX_SIZE=0x4000000 BR2_TARGET_ROOTFS_UBIFS_MAX_SIZE=0x4000000
BR2_TARGET_ROOTFS_UBIFS_OPTS="-F" BR2_TARGET_ROOTFS_UBIFS_OPTS="-F"
BR2_GENERATE_BURNER_IMAGE=y
BR2_GENERATE_IMAGE_AUTO_CALCULATE_SIZE=y BR2_GENERATE_IMAGE_AUTO_CALCULATE_SIZE=y
BR2_PACKAGE_OPENSBI_FW_TEXT_BASE=0x47FE0000 BR2_PACKAGE_OPENSBI_FW_TEXT_BASE=0x47FE0000
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="d211_demo128_nand" BR2_TARGET_UBOOT_BOARD_DEFCONFIG="d211_demo128_nand"

View File

@ -1,6 +1,6 @@
{ {
"spi-nand": { // Device, The name should be the same with string in image:info:media:type "spi-nand": { // Device, The name should be the same with string in image:info:media:type
"size": "128m", // Size of SPI NAND "size": "256m", // Size of SPI NAND
"partitions": { "partitions": {
"spl": { "size": "1m" }, "spl": { "size": "1m" },
"uboot": { "size": "1m" }, "uboot": { "size": "1m" },
@ -13,7 +13,7 @@
"kernel": { "size": "12m" }, "kernel": { "size": "12m" },
"recovery": { "size": "16m" }, "recovery": { "size": "16m" },
"ubiroot": { "ubiroot": {
"size": "64m", "size": "218m",
"ubi": { // Volume in UBI device "ubi": { // Volume in UBI device
"rootfs": { "size": "-" }, "rootfs": { "size": "-" },
}, },

View File