From 0834af715a227b53c12c080cb34658d7d0753da7 Mon Sep 17 00:00:00 2001 From: Thomas Bächler Date: Thu, 8 Oct 2009 22:38:27 +0200 Subject: Skip options starting with a digit, sh variables must not start with a digit. --- init | 1 + 1 file changed, 1 insertion(+) (limited to 'init') diff --git a/init b/init index 0ea8750..c7aca13 100644 --- a/init +++ b/init @@ -20,6 +20,7 @@ for cmd in ${CMDLINE}; do \#*) break ;; # ignore everything after a # in the commandline # The kernel passes those to the kernel on its own [0123456Ss]) ;; + [0-9]*) ;; single) ;; #Allow "init=X" to pass-through init=*) kinit_params="${kinit_params} ${cmd}" ;; -- cgit v1.2.3-24-g4f1b