Update of /cvsroot/kernelloader/linux/busybox
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6702/busybox
Modified Files:
bootshell.sh build-busybox.sh
Log Message:
Activate hotplug support for loading firmware like IRX modules.
Index: build-busybox.sh
===================================================================
RCS file: /cvsroot/kernelloader/linux/busybox/build-busybox.sh,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** build-busybox.sh 30 Jul 2014 23:50:22 -0000 1.18
--- build-busybox.sh 11 Sep 2014 20:20:13 -0000 1.19
***************
*** 168,171 ****
--- 168,172 ----
# Copy useful kernel modules:
# Use modules from current build:
+ mkdir -p lib/firmware || exit -1
mkdir -p lib/modules/${KERNELVERSION}/kernel/fs/cifs || exit -1
mkdir -p lib/modules/${KERNELVERSION}/kernel/fs/isofs || exit -1
Index: bootshell.sh
===================================================================
RCS file: /cvsroot/kernelloader/linux/busybox/bootshell.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** bootshell.sh 1 Apr 2014 20:50:50 -0000 1.4
--- bootshell.sh 11 Sep 2014 20:20:12 -0000 1.5
***************
*** 5,8 ****
--- 5,11 ----
mount -t sysfs sysfs /sys
mdev -s
+ echo /sbin/mdev >/proc/sys/kernel/hotplug
+ ifconfig eth0 up
+ /sbin/udhcpc
exec setsid cttyhack sh
else
|