installer: use 'mke2fs' from 'e2fsprogs' package, change to version 0.2.1

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-08-18 01:11:43 +02:00
parent bd8422dda9
commit c4d33a6666

View File

@ -209,13 +209,13 @@ function do_install_quick() {
# create filesystem
msg_progress_install "23" "creating filesystem on ${INSTALL_DEVICE}1"
mke2fs ${INSTALL_DEVICE}1 >> $LOGFILE 2>&1
mke2fs -t ext4 ${INSTALL_DEVICE}1 >> $LOGFILE 2>&1
msg_progress_install "25" "set uuid and disklabel $DISKLABEL_SYSTEM on ${INSTALL_DEVICE}1"
tune2fs -U random -L $DISKLABEL_SYSTEM ${INSTALL_DEVICE}1 >> $LOGFILE 2>&1
msg_progress_install "28" "creating filesystem on ${INSTALL_DEVICE}2"
mke2fs ${INSTALL_DEVICE}2 >> $LOGFILE 2>&1
mke2fs -t ext4 ${INSTALL_DEVICE}2 >> $LOGFILE 2>&1
msg_progress_install "30" "set uuid and disklabel $DISKLABEL_STORAGE on ${INSTALL_DEVICE}2"
tune2fs -U random -L $DISKLABEL_STORAGE ${INSTALL_DEVICE}2 >> $LOGFILE 2>&1
@ -426,7 +426,7 @@ function do_poweroff() {
# setup needed variables
TMPDIR="/tmp/installer"
BETA="yes"
VERSION="0.2.0"
VERSION="0.2.1"
BACKTITLE="OpenELEC.tv Installer $VERSION"
DISKLABEL_SYSTEM="System"