Bug#734901: [Pkg-sysvinit-devel] Bug#734901: initscripts: More Proper Detection of fastboot Kernel Parameter

2014-01-15 Thread Sebastian Steinhuber
I got it now, confused I was. Grep is not the culprit. FWIW, grep -s -i -E (\t|\s)fastboot($|\t|\s)' should be just fine. printf ' i915.fastboot=1' | grep -s -i -E '(\t|\s)fastboot($|\t|\s)' echo $? 1 $ printf ' fastboot' | grep -s -i -E (\t|\s)fastboot($|\t|\s)' fastboot $ printf '

Bug#734901: [Pkg-sysvinit-devel] Bug#734901: initscripts: More Proper Detection of fastboot

2014-01-15 Thread Sebastian Steinhuber
an even CPU-cycles optimized manner, grep -s -i -E '(\s|\t)fastboot(\s|$|\t)' -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Bug#734901: [Pkg-sysvinit-devel] Bug#734901: initscripts: More Proper Detection of fastboot Kernel Parameter necessary

2014-01-13 Thread Sebastian Steinhuber
Am 13.01.2014 01:15, schrieb Henrique de Moraes Holschuh: severity 734901 grave found 734901 sysvinit/2.88dsf-13 notfound 734901 sysvinit/2.88dsf-45 thanks [...]Ack. All other uses of grep -w to check the kernel command line are likewise buggy, and could use some pro-active fixing. Another