You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
174 B
12 lines
174 B
7 months ago
|
#!/bin/sh
|
||
|
|
||
|
echo "Attempting to parse currently running kernel config"
|
||
|
./test_kconfig
|
||
|
echo
|
||
|
|
||
|
for i in config0*; do
|
||
|
head -n 1 "$i"
|
||
|
KCONFIG_PATH="$i" ./test_kconfig
|
||
|
echo
|
||
|
done
|