12345678910111213141516171819202122232425262728293031323334353637 |
- diff --git a/MakeIMAGE.sh b/MakeIMAGE.sh
- index c64a09d..0d7e058 100755
- --- a/MakeIMAGE.sh
- +++ b/MakeIMAGE.sh
- @@ -4,6 +4,7 @@ SAVE_LC=$LC_ALL
- export LC_ALL=C
-
- BUILD=`cat ../GfA/board/GfA/Display001/BUILD`
- +BUILD=$BUILD-1
- IMAGEFILE=../Display001_Build_$BUILD-img
-
- echo "Image: $IMAGEFILE"
- diff --git a/MakeRootfsUpdate.sh b/MakeRootfsUpdate.sh
- index df6e200..3662417 100755
- --- a/MakeRootfsUpdate.sh
- +++ b/MakeRootfsUpdate.sh
- @@ -1,6 +1,7 @@
- #!/bin/bash
- WRKDIR=/tmp/XXXUpdateRootfs
- BUILD=`cat ../GfA/board/GfA/Display001/BUILD`
- +BUILD=$BUILD-1
- UPDATE_BINARY=$WRKDIR/dest/UpdateRootfs.tar.Z
- UPDATE_FILENAME="../UpdateDisplay001_$BUILD.sh"
- UPDATE_IN_SCRIPT="UpdateRootfs.sh.in"
- diff --git a/UpdateRootfs.sh.in b/UpdateRootfs.sh.in
- index 81448e7..096013e 100644
- --- a/UpdateRootfs.sh.in
- +++ b/UpdateRootfs.sh.in
- @@ -127,7 +127,7 @@ echo "XRES $XRES, YRES $YRES"
-
- if [ "$XRES" == "480" -a "$YRES" == "272" ]; then
- echo "4.3 Inch"
- - sh /root/DisplayTo_4_3inch.sh
- + sh /root/DisplayTo_4_3inch_2020.sh
- DONE=1
- fi
-
|