diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2009-07-28 21:07:40 +0200 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2009-07-28 21:07:40 +0200 |
commit | c8c47a079a8d90aa35877b79c2f9c2b296f875f3 (patch) | |
tree | 9273f7aa4f4c96e835b82941bbf90b85c73641f5 /src/core | |
parent | a4394dab2522d063c337a7e4a3c716772b159f36 (diff) |
fix variable name typo in grub menu.lst generation. this will hopefully fix kernel lines
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/libs/lib-ui-interactive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh index fd37efa..95f0af4 100644 --- a/src/core/libs/lib-ui-interactive.sh +++ b/src/core/libs/lib-ui-interactive.sh @@ -1079,7 +1079,7 @@ generate_grub_menulst() { lv_device=`echo "$ANSWER_DEVICES" | sed -n '1p' | cut -d ' ' -f1` vg_device=`echo "$ANSWER_DEVICES" | sed -n '2p' | cut -d ' ' -f1` crypt_device=`echo "$ANSWER_DEVICES" | sed -n '4p' | cut -d ' ' -f1` - kernel="kernel $subdir/vmlinuz26 root=$lv_device cryptdevice=$crypt_device:`basename $vgdevice` ro" + kernel="kernel $subdir/vmlinuz26 root=$lv_device cryptdevice=$crypt_device:`basename $vg_device` ro" elif echo "$ANSWER_DEVICES" | sed -n '1p' | grep -q 'dm_crypt$' && echo "$ANSWER_DEVICES" | sed -n '2p' | grep -q 'lvm-lv$' && echo "$ANSWER_DEVICES" | sed -n '5p' | grep -q 'raw$' then debug 'FS' 'Grub kernel line? Found / on dm_crypt on lvm on raw' |