1#!/bin/sh
2
3set_preinit_ifname() {
4	ifname=eth0
5}
6
7boot_hook_add preinit_main set_preinit_ifname
8
9
10