blob: c5aae983c7300008bf10e605f1f3ae6a228f6057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2010 Vertical Communications
initramfs_test() {
if [ -n "$INITRAMFS" ]; then
boot_run_hook initramfs
preinit_ip_deconfig
break
fi
}
boot_hook_add preinit_main initramfs_test
|