f804d0ea1d
SVN-Revision: 4090
11 lines
209 B
Bash
Executable file
11 lines
209 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
sysctl -p >&-
|
|
|
|
# automagically run firstboot
|
|
{ mount|grep "on / type tmpfs" 1>&-; } && {
|
|
lock /tmp/.switch2jffs
|
|
firstboot switch2jffs
|
|
lock -u /tmp/.switch2jffs
|
|
}
|