--- trunk/installer-simple/bin/installer.sh.in 2014/01/07 14:14:23 2430 +++ trunk/installer-simple/bin/installer.sh.in 2014/01/07 14:18:40 2433 @@ -293,6 +293,7 @@ #removable=1 #fi #done + ## smartcard = udevadm info -n /dev/sda -a | grep -i 'configuration.*card' ## only add this for grub legacy, grub2 detect these settings on its own #export GRUBLEGACYOPTS="rootdelay=8" @@ -437,7 +438,7 @@ setup_hdd_format() { - mke2fs -j -q ${ROOTHDD} || dialog_die + mkfs."${FORMAT_FILESYSTEM}" -q "${ROOTHDD}" || dialog_die } install_mount_rootfs() @@ -449,7 +450,9 @@ install_system_image() { + pushd ${INSTALLROOT} > /dev/null tar xvjpf ${CDROOT}/system/${CDIMAGENAME} -C ${INSTALLROOT} + popd > /dev/null } install_bootsector_chroot() @@ -690,7 +693,6 @@ install_umount_rootfs() { - cd / umount ${INSTALLROOT}/boot || dialog_die umount ${INSTALLROOT} || dialog_die }