mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:57:31 +02:00
86a0b33fa1
initramfs images git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20159 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
247 B
Bash
15 lines
247 B
Bash
#!/bin/sh
|
|
# 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
|
|
|