tests: vm: Simplify parameter passing

Since the kernel  actually passes the command-line parameters
as environment variables to the init script, there's no need
to parse them out of /proc/cmdline.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Johannes Berg 2022-07-12 23:44:19 +02:00 committed by Jouni Malinen
parent 6f90aa5a63
commit 550ab94e83
2 changed files with 3 additions and 16 deletions

View file

@ -30,19 +30,6 @@ export HOME=/tmp
sysctl kernel.panic_on_oops=1
sysctl kernel.panic=1
# get extra command line variables from /proc/cmdline
TESTDIR=$(sed 's/.*testdir=\([^ ]*\) .*/\1/' /proc/cmdline)
TIMEWARP=$(sed 's/.*timewarp=\([^ ]*\) .*/\1/' /proc/cmdline)
EPATH=$(sed 's/.*EPATH=\([^ ]*\) .*/\1/' /proc/cmdline)
TELNET=$(sed 's/.*TELNET=\([^ ]*\) .*/\1/' /proc/cmdline)
ARGS=$(sed 's/.*ARGS=\([^ ]*\)\( \|$\).*/\1/' /proc/cmdline)
LOGDIR=$(sed 's/.*LOGDIR=\([^ ]*\)\( \|$\).*/\1/' /proc/cmdline)
if grep -q "commitid=" /proc/cmdline; then
COMMITID=$(sed 's/.*commitid=\([^ ]*\)\( \|$\).*/\1/' /proc/cmdline)
else
COMMITID=
fi
mount --bind "$TESTDIR/vm/regdb/" /lib/firmware
if [ "$MODULEDIR" != "" ] ; then

View file

@ -148,8 +148,8 @@ A+="cfg80211.dyndbg=+p "
A+="mac80211.dyndbg=+p "
A+="mac80211_hwsim.dyndbg=+p "
A+="init=$CMD "
A+="testdir=$TESTDIR "
A+="timewarp=$TIMEWARP "
A+="TESTDIR=$TESTDIR "
A+="TIMEWARP=$TIMEWARP "
A+="MODULEDIR=$MODULEDIR "
A+="TELNET=$TELNET_ARG "
A+="EPATH=$EPATH "
@ -157,7 +157,7 @@ A+="ARGS=$argsfile "
A+="console=$KVMOUT "
COMMITID="$(git rev-parse HEAD)"
if [ -n "$COMMITID" ]; then
A+="commitid=$COMMITID "
A+="COMMITID=$COMMITID "
fi
A+="ro"