aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib/firstboot/20_has_mini_fo
blob: 8ca6a4fe58036c91aa42a2490370b140c7d9502f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# Copyright (C) 2006-2010 OpenWrt.org
# Copyright (C) 2010 Vertical Communications

check_for_overlay() {
    if ! grep -qE '(mini_fo|overlay)' /proc/filesystems; then
	boot_run_hook no_fo
	exit 1
    fi
}

boot_hook_add switch2jffs check_for_overlay