This website requires JavaScript.
Explore
Help
Register
Sign In
hak5
/
openwrt
mirror of
https://github.com/hak5/openwrt.git
Watch
1
Star
0
Fork
You've already forked openwrt
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
efd00e6240
openwrt
/
package
/
base-files
/
files
/
lib
/
firstboot
/
05_firstboot_skip
11 lines
115 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add preinit modularization work by Daniel Dickinson (cshore) SVN-Revision: 19331
2010-01-25 17:11:17 +00:00
#!/bin/sh
check_skip() {
base-files: fix typo in 05_firstboot_skip script (#11359) SVN-Revision: 31492
2012-04-27 16:49:16 +00:00
if [ "$firstboot_skip_next" = "true" ]; then
add preinit modularization work by Daniel Dickinson (cshore) SVN-Revision: 19331
2010-01-25 17:11:17 +00:00
return 0
else
return 1
fi
}