mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 04:12:51 +02:00
11 lines
114 B
Plaintext
11 lines
114 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
check_skip() {
|
||
|
if [ "$firsboot_skip_next" = "true" ]; then
|
||
|
return 0
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
}
|
||
|
|