boot: make use of kmodloader if it is available
[openwrt.git] / package / base-files / files / lib / firstboot / 05_firstboot_skip
1 #!/bin/sh
2
3 check_skip() {
4     if [ "$firstboot_skip_next" = "true" ]; then
5         return 0
6     else 
7         return 1
8     fi
9 }
10