diff options
author | Dave Reisner <d@falconindy.com> | 2011-06-09 04:43:44 +0200 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2011-06-16 20:19:12 +0200 |
commit | 7abf4110cf3d5bb52f515b6fe05a60bd44aa4385 (patch) | |
tree | 55bce43f6c93f6cd6b21312796b548113708c641 | |
parent | ee9412dbcc1deb117af39990c3e777bc0994bb70 (diff) | |
download | mkinitcpio-7abf4110cf3d5bb52f515b6fe05a60bd44aa4385.tar.gz mkinitcpio-7abf4110cf3d5bb52f515b6fe05a60bd44aa4385.tar.xz |
dmesg: remove install/hook
This should be set via the loglevel= parameter on the kernel cmdline.
Signed-off-by: Dave Reisner <d@falconindy.com>
-rw-r--r-- | hooks/dmesg | 5 | ||||
-rw-r--r-- | install/dmesg | 19 |
2 files changed, 0 insertions, 24 deletions
diff --git a/hooks/dmesg b/hooks/dmesg deleted file mode 100644 index f7d4088..0000000 --- a/hooks/dmesg +++ /dev/null @@ -1,5 +0,0 @@ -# vim: set ft=sh: -run_hook () -{ - dmesg -n 3 -} diff --git a/install/dmesg b/install/dmesg deleted file mode 100644 index 9482874..0000000 --- a/install/dmesg +++ /dev/null @@ -1,19 +0,0 @@ -# vim: set ft=sh: - -build() -{ - MODULES="" - BINARIES="" - FILES="" - SCRIPT="dmesg" -} - -help () -{ -cat<<HELPEOF - This hook lowers the console log level to 3. - It is useful when the user has to interact - with the boot process during early userspace - (like when entering a passphrase). -HELPEOF -} |