diff options
author | Thomas Backlund <tmb@mageia.org> | 2017-01-06 23:11:16 +0200 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2017-01-06 23:11:16 +0200 |
commit | 7dfe15751df1f2f934f3750b6a88c7379b1e01fe (patch) | |
tree | 82dab2c847bdab81d3659d6b13cabe224ee35a87 | |
parent | 1470ce6f6513d0a532e1512e53c70944c44bef6e (diff) | |
download | drakx-7dfe15751df1f2f934f3750b6a88c7379b1e01fe.tar drakx-7dfe15751df1f2f934f3750b6a88c7379b1e01fe.tar.gz drakx-7dfe15751df1f2f934f3750b6a88c7379b1e01fe.tar.bz2 drakx-7dfe15751df1f2f934f3750b6a88c7379b1e01fe.tar.xz drakx-7dfe15751df1f2f934f3750b6a88c7379b1e01fe.zip |
apply audit=0 on all entries
-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", ); |