flashimages: switch to single ext4 (wo journal)

also support video out on pandaboard.
This commit is contained in:
Arne Fitzenreiter
2012-06-10 11:16:57 +02:00
parent 1f6abd5362
commit 3e011c27dd
5 changed files with 38 additions and 51 deletions

View File

@@ -2,11 +2,11 @@
########################################################################
# Begin $rc_base/init.d/fsresize
#
# Description : Resize the /var filesystem
# Description : Resize the root filesystem in the background
#
# Authors : Arne Fitzenreiter - arne_f@ipfire.org
#
# Version : 1.00
# Version : 1.01
#
# Notes :
#
@@ -17,27 +17,24 @@
case "${1}" in
start)
boot_mesg "Mounting root file system in read/write mode ..."
mount -o remount,rw / > /dev/null
evaluate_retval
boot_mesg "Autoresize /var partition to use the whole drive ..."
boot_mesg "Background Autoresize root partition to use the whole drive"
# Detect device
ROOT=`mount | grep -m1 " / " | cut -d" " -f1`;
DRV=${ROOT::`expr length $ROOT`-1}
boot_mesg " * check filesystem on ${DRV}4 before resize ..."
fsck -f -y ${DRV}4
boot_mesg " * resize ${DRV}4 ..."
resize2fs -p ${DRV}4
evaluate_retval
boot_mesg "resize ${DRV}3 ..."
nice -n 19 $0 background ${DRV}3 > /dev/null &
;;
background)
resize2fs -p $2
# Erase symlink, it should run only once
rm -f /etc/rc.d/rcsysinit.d/S26fsresize
rm -f /etc/rc.d/rcsysinit.d/S42fsresize
sync
exit 0;
;;
*)
echo "Usage: ${0} {start}"
exit 1

View File

@@ -2,11 +2,11 @@
########################################################################
# Begin $rc_base/init.d/partresize
#
# Description : Resize the /var partition to the drivesize
# Description : Resize the root partition to the drivesize
#
# Authors : Arne Fitzenreiter - arne_f@ipfire.org
#
# Version : 1.00
# Version : 1.01
#
# Notes :
#
@@ -30,8 +30,8 @@ case "${1}" in
DRV=${ROOT::`expr length $ROOT`-1}
fi
boot_mesg "Change Partition 4 to all free space ..."
echo -e 'd\n4\nn\np\n4\n\n\nw\nq\n' | fdisk ${DRV}
boot_mesg "Change Partition $(DRV)3 to all free space ..."
echo -e 'd\n3\nn\np\n3\n\n\nw\nq\n' | fdisk ${DRV}
# Erase symlink, it should run only once
rm -f /etc/rc.d/rcsysinit.d/S25partresize