1 |
diff -Naur e-smith-base-5.2.0-orig/root/etc/e-smith/templates/etc/inittab/15nonetworkdrivers e-smith-base-5.2.0/root/etc/e-smith/templates/etc/inittab/15nonetworkdrivers |
2 |
--- e-smith-base-5.2.0-orig/root/etc/e-smith/templates/etc/inittab/15nonetworkdrivers 2006-02-17 04:41:51.000000000 +0100 |
3 |
+++ e-smith-base-5.2.0/root/etc/e-smith/templates/etc/inittab/15nonetworkdrivers 1970-01-01 01:00:00.000000000 +0100 |
4 |
@@ -1 +0,0 @@ |
5 |
-nn::sysinit:/bin/sh /sbin/e-smith/nonetworkdrivers |
6 |
diff -Naur e-smith-base-5.2.0-orig/root/sbin/e-smith/nonetworkdrivers e-smith-base-5.2.0/root/sbin/e-smith/nonetworkdrivers |
7 |
--- e-smith-base-5.2.0-orig/root/sbin/e-smith/nonetworkdrivers 2008-03-26 17:49:00.000000000 +0100 |
8 |
+++ e-smith-base-5.2.0/root/sbin/e-smith/nonetworkdrivers 1970-01-01 01:00:00.000000000 +0100 |
9 |
@@ -1,18 +0,0 @@ |
10 |
-#! /bin/sh |
11 |
- |
12 |
-# quit early and quietly if this is not going to work |
13 |
-test -x "/sbin/kmodule" || exit 0 |
14 |
-# TODO - find out whether there is a "wrong module" problem |
15 |
-# in CentOS5 - this script may be a workaround for a |
16 |
-# problem which we don't ever see any more |
17 |
- |
18 |
-# unload any network drivers which have been installed |
19 |
-# by rc.sysinit, so that we can allocate eth0/eth1 as we |
20 |
-# choose, rather than in order defined by kmodule |
21 |
-kmodule | while read devtype mod |
22 |
-do |
23 |
- if [ "$devtype" = "NETWORK" ] |
24 |
- then |
25 |
- /sbin/rmmod $mod 2>/dev/null |
26 |
- fi |
27 |
-done |