summaryrefslogtreecommitdiffstats
path: root/draklive
diff options
context:
space:
mode:
Diffstat (limited to 'draklive')
-rwxr-xr-xdraklive6
1 files changed, 2 insertions, 4 deletions
diff --git a/draklive b/draklive
index 2307964..f380877 100755
--- a/draklive
+++ b/draklive
@@ -97,7 +97,7 @@ sub build_syslinux_cfg {
" kernel $kernel",
" append initrd=$initrd $append $cmdline";
}
- } group_by2('' => '', @{$media->{boot_entries}})),
+ } group_by2(@{$media->{boot_entries}}),
"",
);
}
@@ -121,8 +121,6 @@ sub build_grub_cfg_raw {
$media->{partitions}[$part_idx]{mntpoint} eq $boot and $boot = "";
my $title = $media->{title} || $live->{media}{title};
- my @boot_entries = @{$media->{boot_entries} || []};
- @boot_entries = ('' => '') if !@boot_entries;
join("\n",
"timeout " . get_bootloader_timeout($live),
@@ -133,7 +131,7 @@ sub build_grub_cfg_raw {
"title " . $title . if_($name, " ($name)"),
"kernel $grub_part" . $boot . "/vmlinuz " . get_default_append($live, $opts) . if_($cmdline, " $cmdline"),
if_($initrd, "initrd " . $boot . $initrd);
- } group_by2(@boot_entries)),
+ } group_by2(@{$media->{boot_entries}}),
($live->{oem_rescue} && defined $opts->{oem_rescue_idx} ? (
#- FIXME: factorize with above, build_grub_cfg_entry($media)
"title " . $live->{oem_rescue}{media}{title},