diff options
-rwxr-xr-x | images/make_boot_img | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/images/make_boot_img b/images/make_boot_img index dbc475722..2cb607d20 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -9,7 +9,7 @@ use Carp; Config->import; my ($arch) = $Config{archname} =~ /(.*?)-/; -my $default_append = ''; +my $default_append = 'audit=0'; my $default_acpi = ''; my $default_vga = "vga=788 splash quiet"; my $default_iswmd = "noiswmd"; @@ -177,8 +177,8 @@ sub entries_append { rescue => "audit=0 rescue", ); my @entries = ( - (map { $_->[0] => "$automatic$default_acpi $default_iswmd $_->[1]" } group_by2(@simple_entries)), - noacpi => "$automatic$default_vga $default_iswmd acpi=off", + (map { $_->[0] => "$automatic$default_acpi $default_iswmd audit=0 $_->[1]" } group_by2(@simple_entries)), + noacpi => "$automatic$default_vga $default_iswmd audit=0 acpi=off", # restore => "$automatic$default_vga restore", ); |