[pkg-fso-commits] [SCM] Various non-packaged files branch, master, updated. a1db9a91ed379470016cc2abeeb6b78e27b75a96
Joachim Breitner
mail at joachim-breitner.de
Sat Jan 24 13:10:23 UTC 2009
The following commit has been merged in the master branch:
commit a1db9a91ed379470016cc2abeeb6b78e27b75a96
Author: Daniel Balsiger <dbalsige at iamexwi.unibe.ch>
Date: Sat Jan 24 14:10:28 2009 +0100
Fix ${INST_DIR}/boot/uImage-GTA02.bin symlink
I used the script on a virgin GTA02 the following way:
HOSTNAME=mokian DASH_BINSH=false QI=true ./install.sh all
creates a symlink ${INST_DIR}/boot/uImage-GTA02.bin pointing to
${INST_DIR}/boot/uImage.bin, which prevents qi from booting properly.
the symlink should point to uImage.bin directly, I suggest.
diff --git a/install.sh b/install.sh
index 559cbd3..8e48c12 100755
--- a/install.sh
+++ b/install.sh
@@ -685,7 +685,7 @@ if [ "$QI" = "true" ]; then
BOOT_DIR=$INST_DIR/boot/boot
if [ "$SINGLE_PART" = "true" ]; then
BOOT_DIR=$INST_DIR/boot
- ln -s $BOOT_DIR/uImage.bin $BOOT_DIR/uImage-GTA02.bin
+ ln -s uImage.bin $BOOT_DIR/uImage-GTA02.bin
else
mkdir $BOOT_DIR
ln -s ../uImage.bin $BOOT_DIR/uImage-GTA02.bin
--
Various non-packaged files
More information about the pkg-fso-commits
mailing list