partition_setup.sh: Fix cmdline.txt handling
Add sdhci.debug_quirks2=4 to cmdline.txt when resizing Only remove 'quiet' from cmdline if splash screen is off
This commit is contained in:
parent
33dfe5404c
commit
ba8909f05d
|
@ -33,7 +33,12 @@ if [ -z "$restore" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! grep -q resize /proc/cmdline; then
|
if ! grep -q resize /proc/cmdline; then
|
||||||
sed -i 's| init=/usr/lib/raspi-config/init_resize.sh||;s| quiet||2g' /tmp/1/cmdline.txt
|
if ! grep -q splash /tmp/1/cmdline.txt; then
|
||||||
|
sed -i "s| quiet||g" /tmp/1/cmdline.txt
|
||||||
|
fi
|
||||||
|
sed -i 's| init=/usr/lib/raspi-config/init_resize.sh||' /tmp/1/cmdline.txt
|
||||||
|
else
|
||||||
|
sed -i '1 s|.*|& sdhci.debug_quirks2=4|' /tmp/1/cmdline.txt
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user