From b1318530e386827cbf83417cefa89f1d29b28721 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Fri, 28 Jun 2013 11:22:05 +0000 Subject: ubox: update to latest git revision * add pivot root support * add back a /etc/init.d/fstab * add "block mount/umount" support * add anonymous swap/mount support * add auto swap/mount support * fix superflous error when inserting modules * add back jffs2reset/jffs2mark Signed-off-by: John Crispin SVN-Revision: 37057 --- package/system/ubox/files/fstab.init | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package/system/ubox/files/fstab.init (limited to 'package/system/ubox/files') diff --git a/package/system/ubox/files/fstab.init b/package/system/ubox/files/fstab.init new file mode 100644 index 0000000..be49470 --- /dev/null +++ b/package/system/ubox/files/fstab.init @@ -0,0 +1,14 @@ +#!/bin/sh /etc/rc.common +# (C) 2013 openwrt.org + +START=40 + +start() { + echo "this file has been obseleted. please call \"/sbin/block mount\" directly" + /sbin/block mount +} + +stop() { + echo "this file has been obseleted. please call \"/sbin/block umount\" directly" + /sbin/block umount +} -- cgit v1.1