1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
#
# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
#
--- hotplug-2003_08_05/etc/hotplug.d/default/default.hotplug~busybox
+++ hotplug-2003_08_05/etc/hotplug.d/default/default.hotplug
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# This version of /sbin/hotplug should works on most GNU/Linux systems
# using Linux 2.2.18+ or 2.4.* kernels. On 2.2.*, only USB has such
@@ -24,7 +24,7 @@
#
cd /etc/hotplug
-. hotplug.functions
+. ./hotplug.functions
# DEBUG=yes export DEBUG
--- hotplug-2003_08_05/etc/hotplug/ieee1394.agent~busybox
+++ hotplug-2003_08_05/etc/hotplug/ieee1394.agent
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# IEEE1394-specific hotplug policy agent.
#
@@ -24,7 +24,7 @@
#
cd /etc/hotplug
-. hotplug.functions
+. ./hotplug.functions
# DEBUG=yes export DEBUG
# generated by modutils 2.4.9 or later, for 2.4.10 and later kernels
--- hotplug-2003_08_05/etc/hotplug/net.agent~busybox
+++ hotplug-2003_08_05/etc/hotplug/net.agent
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# Network hotplug policy agent for Linux 2.4 kernels
#
@@ -17,7 +17,7 @@
#
cd /etc/hotplug
-. hotplug.functions
+. ./hotplug.functions
# DEBUG=yes export DEBUG
if [ "$INTERFACE" = "" ]; then
--- hotplug-2003_08_05/etc/hotplug/pci.agent~busybox
+++ hotplug-2003_08_05/etc/hotplug/pci.agent
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# PCI-specific hotplug policy agent.
#
@@ -33,7 +33,7 @@
#
cd /etc/hotplug
-. hotplug.functions
+. ./hotplug.functions
# generated by modutils, for current 2.4.x kernels
MAP_CURRENT=$MODULE_DIR/modules.pcimap
--- hotplug-2003_08_05/etc/hotplug/scsi.agent~busybox
+++ hotplug-2003_08_05/etc/hotplug/scsi.agent
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# SCSI hotplug agent for 2.5 kernels
#
@@ -7,7 +7,7 @@
#
cd /etc/hotplug
-. hotplug.functions
+. ./hotplug.functions
case $ACTION in
--- hotplug-2003_08_05/etc/hotplug/usb.agent~busybox
+++ hotplug-2003_08_05/etc/hotplug/usb.agent
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#
# USB-specific hotplug policy agent.
#
@@ -79,7 +79,7 @@
fi
cd /etc/hotplug
-. hotplug.functions
+. ./hotplug.functions
# DEBUG=yes export DEBUG
# generated by modutils, for current 2.4.x (and later) kernels
--- hotplug-2003_08_05/etc/hotplug/usb.handmap~busybox
+++ hotplug-2003_08_05/etc/hotplug/usb.handmap
@@ -3,7 +3,7 @@
# with special driver mappings that the kernel
# for some reason does not expose through modutils
#
-# Comments get read by bash so dont use punctuation
+# Comments get read by the shell so dont use punctuation
# RETEST ESPECIALLY AFER CHANGES TO COMMENTS
#
#
--- hotplug-2003_08_05/etc/hotplug/usb.usermap~busybox
+++ hotplug-2003_08_05/etc/hotplug/usb.usermap
@@ -1 +0,0 @@
-# usb module match_flags idVendor idProduct bcdDevice_lo bcdDevice_hi bDeviceClass bDeviceSubClass bDeviceProtocol bInterfaceClass bInterfaceSubClass bInterfaceProtocol driver_info
|