summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO4
-rw-r--r--src/core/procedures/interactive2
2 files changed, 3 insertions, 3 deletions
diff --git a/TODO b/TODO
index 8c0d128..b34d474 100644
--- a/TODO
+++ b/TODO
@@ -2,8 +2,7 @@ See also the FIXME's and TODO's in the code.
PRE-ALPHA PHASE: get the framework reasonably working + interactive procedure ftp/cdrom working.
-* core/interactive bug: configure system -> fstab (/mnt/etc/fstab) does only contain pts,shm and floppy/dvd/cdrom. not hd's? ->this breaks the boot procedure! -> fixed i think
-* core/interactive bug: grub menu.lst says hda instead of sda
+* core/interactive bug: grub menu.lst says hda instead of sda + too many entries again (1) /dev/hda, 2)windows, 0 1 again but with uuid's (fallback and normal)
ALPHA PHASE: get some people to test and suggest ideas, while fixing bugs and refactoring
@@ -31,6 +30,7 @@ not mounted under /mnt
* core/quickinst: figure out what needs to be done and do it.
* dieter/automatic: wait for yaourt --config fix
* dieter/automatic: put config files from svn in place first, so that if a package has an update, it can do it's thing.
+* on boot after fresh install sometimes filesystem creation date is newer then current date -> fsck. sometimes even forced reboot. (i've had this witch /arch/setup too)
BETA PHASE: try to get fifa on the (beta) installcd as an experimental, alternative installer.
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index 7f1bf2e..8fdb138 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -98,7 +98,7 @@ mainmenu()
"4")
check_depend worker package_list && execute worker install_packages && S_INSTALL=1 && { execute worker auto_fstab; execute worker auto_network; execute worker auto_locale; } && NEXTITEM=5 ;;
"5")
- check_depend worker install_packages && execute worker configure_system && S_CONFIG=1 && { execute worker mkinitcpio; execute worker locales; } && NEXTITEM=6 ;;
+ check_depend worker install_packages && execute worker configure_system && S_CONFIG=1 && { execute worker mkinitcpio; execute worker locales; } && NEXTITEM=6 ;; #TODO: why is next item 5 if $?=0?
"6")
execute worker install_bootloader && S_BOOT=1 && NEXTITEM=7 ;;
"7")