diff options
-rwxr-xr-x | scripts/flash-uboot.sh | 3 | ||||
-rwxr-xr-x | scripts/flash.sh | 2 | ||||
-rw-r--r-- | target/arm/st-stm32f746g/genimage.cfg | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/scripts/flash-uboot.sh b/scripts/flash-uboot.sh index e0cfcb340..e519d6a58 100755 --- a/scripts/flash-uboot.sh +++ b/scripts/flash-uboot.sh @@ -17,7 +17,6 @@ fi -c "reset init" \ -c "flash probe 0" \ -c "flash info 0" \ --c "flash write_image erase ${OUTPUT_DIR}/u-boot-spl.bin 0x08000000" \ --c "flash write_image erase ${OUTPUT_DIR}/u-boot-dtb.bin 0x08008000" \ +-c "flash write_image erase ${OUTPUT_DIR}/u-boot-dtb.bin 0x08000000" \ -c "reset run" \ -c "shutdown" diff --git a/scripts/flash.sh b/scripts/flash.sh index 3763cb7af..d5343a7fb 100755 --- a/scripts/flash.sh +++ b/scripts/flash.sh @@ -8,7 +8,7 @@ if ! test -d "${OUTPUT_DIR}" ; then echo "Usage: $0 OUTPUT_DIR BOARD_NAME" echo "" echo "Arguments:" - echo " OUTPUT_DIR The Buildroot output directory." + echo " OUTPUT_DIR The OpenADK output directory." echo " BOARD_NAME One of the available boards among:" echo " stm32f429discovery, stm32f429disc1" exit 1 diff --git a/target/arm/st-stm32f746g/genimage.cfg b/target/arm/st-stm32f746g/genimage.cfg index 79e9e89f0..8cd0530ae 100644 --- a/target/arm/st-stm32f746g/genimage.cfg +++ b/target/arm/st-stm32f746g/genimage.cfg @@ -22,6 +22,6 @@ image sdcard.img { partition rootfs { partition-type = 0x83 image = "rootfs.ext" - size = 32M + size = 64M } } |