Browse Source

stm32: minor bugfixes

Waldemar Brodkorb 8 months ago
parent
commit
ae56ccd487
3 changed files with 3 additions and 4 deletions
  1. 1 2
      scripts/flash-uboot.sh
  2. 1 1
      scripts/flash.sh
  3. 1 1
      target/arm/st-stm32f746g/genimage.cfg

+ 1 - 2
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"

+ 1 - 1
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

+ 1 - 1
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
 	}
 }