From 467534e0a4b0f9fb6cac6f532bd60defe8077b0a Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 28 Jun 2005 02:12:22 +0000 Subject: - since we don't use a ramdisk for the stage2 anymore, remove ramdisk_size=128000 (hopefully the initrd doesn't have the limitation or we won't hit the stupid low default max size of the kernel) - use the short aliases for automatic stage1 (cf mdk-stage1/automatic.c) --- make_boot_img | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'make_boot_img') diff --git a/make_boot_img b/make_boot_img index 470b9dd60..54cc781a9 100755 --- a/make_boot_img +++ b/make_boot_img @@ -5,7 +5,7 @@ use MDK::Common; Config->import; my ($arch) = $Config{archname} =~ /(.*?)-/; -my $default_append = "ramdisk_size=128000"; +my $default_append = ''; # full acpi support for x86_64, enough acpi support for x86 ht, no acpi for others my $default_acpi = $arch =~ /i.86/ ? "acpi=ht" : $arch =~ /x86_64/ ? "" : "acpi=off"; my $default_vga = "vga=788 splash=silent"; @@ -137,6 +137,7 @@ F3 boot.msg EOF my @l = map { + $_->{append} =~ s/\s+/ /g; "label $_->{label}\n" . " kernel $_->{kernel}\n" . ($_->{initrd} ? " append initrd=$_->{initrd} $_->{append}\n" : ''); -- cgit v1.2.1