#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org

START=00

OVERLAY_UBIFS=`grep '/overlay ubifs' /proc/mounts`


boot() {
    if [ -n "${OVERLAY_UBIFS}" ]; then
        mount -o remount,sync /overlay
    fi
}
