Hey there.
I successfully installed Debian on my Freerunner yesterday
after upgrading from the stock U-Boot 1.3.2-rc2-dirty-moko12
so I could boot off the 8GB SDHC card.
Anyway, I ran the install.sh script on my own, manually step
by step. I saw that the swap was not being formatted.
Patch attached that adds mkswap to action_format().
Best regards,
Per
--- install.sh.orig 2009-03-09 22:38:03.000000000 +0000
+++ install.sh 2009-03-09 22:38:52.000000000 +0000
@@ -624,6 +624,9 @@
else
mkfs.$SD_PART1_FS ${SD_DEVICE}p1
mkfs.$SD_PART2_FS ${SD_DEVICE}p2
+ if [ 0 -lt "$SD_SWAP_SIZE" ]; then
+ mkswap ${SD_DEVICE}p3
+ fi
fi
echo "I: microSD card ready"
_______________________________________________
pkg-fso-maint mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-fso-maint