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