11 lines
164 B
Bash
Executable File
11 lines
164 B
Bash
Executable File
#!/sbin/sh
|
|
# checksys.sh
|
|
|
|
output=`grep -i "clk" /proc/cmdline`
|
|
|
|
if [ -n "$output" ]
|
|
then
|
|
echo "clk=true" > /tmp/nfo.prop
|
|
else
|
|
echo "clk=null" > /tmp/nfo.prop
|
|
fi |