summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-12-28remove pointless auto_fstab workerDieter Plaetinck
worker_auto_fstab only wrapped around target_configure_fstab. remove worker_auto_fstab, and call target_configure_fstab from prefill_configs(), which gets run in the configure_system worker. This way all procedures still run the logic, but as part of the system configuration, not as a separate step
2010-12-28cleanup target_configure_fstab(), correct exit codesDieter Plaetinck
2010-12-28more elegant way to build menu in interactive procedureDieter Plaetinck
2010-12-28manage $EDITOR more properlyDieter Plaetinck
since 3cee8e663a4da69456b493acccbda27064209a35 libui-sh can manage the $EDITOR preference, so we can simplify and cleanup our code. we now also explicitly enable the user to change $EDITOR in the interactive procedure even when it is already set correctly, so there is a new menu entry for that.
2010-12-20Merge branch 'btrfs'Dieter Plaetinck
2010-12-20make default root size in autoprepare more sensible for small disksDieter Plaetinck
2010-12-20Merge branch 'master' into btrfsDieter Plaetinck
2010-12-20fix grub device selection, remove duplicate disksDieter Plaetinck
2010-12-19Merge branch 'master' into btrfsDieter Plaetinck
2010-12-19add aif-report-issues.sh scriptDieter Plaetinck
2010-12-18Merge branch 'master' into btrfsDieter Plaetinck
2010-12-18fix ordering of packages by group, bug introduced in previous commitDieter Plaetinck
2010-12-18Merge branch 'master' into btrfsDieter Plaetinck
2010-12-18make package extra info also contain package versionDieter Plaetinck
2010-12-18pass package names as separate argumentsDieter Plaetinck
Since we've switched to an array-based approach, it makes more sense to treat packages as separate arguments (that's how bash works anyway)
2010-12-18Merge branch 'master' into btrfsDieter Plaetinck
2010-12-18simplify PV selection a tiny bit by using array directlyDieter Plaetinck
2010-12-18adapt ask_checklist calls for new libui-sh api since e549a38079530afc3913Dieter Plaetinck
2010-12-17preliminary btrfs supportDieter Plaetinck
2010-12-17centralize interactive rollback code, ask for rollback when needed when ↵Dieter Plaetinck
aborting interactive install
2010-12-17interactive_select_packages(): show package description when hoovering over ↵Dieter Plaetinck
package
2010-12-17cleanup interactive_select_packages()Dieter Plaetinck
2010-12-17document output order for various pacman callsDieter Plaetinck
2010-12-17adapt for libui-sh change: ask_checklist returns array instead of uglyDieter Plaetinck
quoted string. libui-sh change 79e8bfe2
2010-12-14remove stale TODODieter Plaetinck
2010-12-13display previous $fs_type as default when editing FSDieter Plaetinck
2010-12-13fix display of fs_create in "Manage Filesystems"Dieter Plaetinck
2010-12-13parse_filesystem_string: handle no_fs cases, fixed display in "Manage ↵Dieter Plaetinck
Filesystems"
2010-12-13properly show partition info in "Manage filesystems"Dieter Plaetinck
this was broken since 6d8f39a5e114755b67b86529e6f16b7d9ee752df also, partinfo gathering is now in lib-blockdevices-filesystems.sh
2010-12-13make sure get_blockdevice_size returns 0 if there was no issue, this caused ↵Dieter Plaetinck
some sizes not be shown
2010-12-12renew_blockdevices fix, bug introduced in ↵Dieter Plaetinck
1641a8975040df2706b191025568b953af0841ef
2010-12-12unbreak $TMP_BLOCKDEVICES initialisation, broken since ↵Dieter Plaetinck
dabeebb0653ee444a9b142ac17af2128da8f7f00
2010-12-12enable backslash interpretation for finddisks and findblockdevices "things ↵Dieter Plaetinck
to echo"
2010-12-12syntax fixDieter Plaetinck
2010-12-12bugfix for renew_blockdevices, introduced in ↵Dieter Plaetinck
dabeebb0653ee444a9b142ac17af2128da8f7f00
2010-12-12make 'Manage filesystems' info more conciseDieter Plaetinck
2010-12-12syntax fixDieter Plaetinck
2010-12-12nicer display of partitions and filesystems in "Manage filesystems"Dieter Plaetinck
2010-12-12make ask_option calls more uniform and nice (allow spaces)Dieter Plaetinck
2010-12-12make font/keymap selection dialogs more robustDieter Plaetinck
2010-12-12allow .cp.gz and partialfonts in font selectionDieter Plaetinck
bug 6111 and 662 are fixed since Sunday, 31 December 2006
2010-12-12make BLOCKFRIENDLY prettierDieter Plaetinck
use arrays, so we can allow whitespace in the labels
2010-12-12make interactive_get_editor() more elegantDieter Plaetinck
2010-12-12cleanup some TODO's and other cruftDieter Plaetinck
2010-12-12clean up finddisks and findblockdevices codeDieter Plaetinck
make the finddisks and findblockdevices code more robust and somewhat cleaner
2010-12-12cleanup finddisks and findblockdevices APIDieter Plaetinck
Due do to some old remaining cruft, the API for finddisks and findblockdevices was needlessly complicated. The only thing really needed is some ability to control what goes between entries. Al the other stuff (string at the end, control of newlines) was pointless.
2010-12-12clean up disk selection dialogsDieter Plaetinck
instead of first showing a nice overview with disk sizes, and then making the user select a disk from a dry list, we now do both at once
2010-12-12reset sfdisk input before partitioning, to avoid extraneous stale dataDieter Plaetinck
2010-12-12refactor filesystem_packages code to use associative array definition at topDieter Plaetinck
2010-12-09correctly return wait_for exitcode, and use it to die_error if neededDieter Plaetinck