Skip to content
Snippets Groups Projects

device/*: stop using console=null

Merged Clayton Craft requested to merge craftyguy/no-null-console into master
Files
2
+ 1
3
@@ -4,8 +4,6 @@
exit_code=0
set -x
if [ "$(id -u)" = 0 ]; then
set -x
apk -q add grep
@@ -89,7 +87,7 @@ if grep -qEr 'PMOS_NO_OUTPUT_REDIRECT' -- *; then
exit_code=1
fi
if grep -qEr '^deviceinfo_kernel_cmdline.*[\"\s]console=null' -- *; then
if grep -qEr '^deviceinfo_kernel_cmdline.*[\"\s]console=null' -- device/; then
echo "ERROR: Do not use console=null in the kernel command line."
echo "Use these params to quiet console on boot: quiet loglevel=2 udev.log_level=2"
echo "For more information, see: pma#2989"
Loading