2006-01-05 17:31:29 +01:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
preBuild=preBuild
|
|
|
|
|
|
|
|
preBuild() {
|
|
|
|
sed -e "s^@bash\@^$bash^g" \
|
|
|
|
< etc/hotplug/dasd.agent > etc/hotplug/dasd.agent.tmp
|
|
|
|
mv etc/hotplug/dasd.agent.tmp etc/hotplug/dasd.agent
|
|
|
|
|
|
|
|
sed -e "s^@bash\@^$bash^g" \
|
|
|
|
< etc/hotplug/tape.agent > etc/hotplug/tape.agent.tmp
|
|
|
|
mv etc/hotplug/tape.agent.tmp etc/hotplug/tape.agent
|
|
|
|
|
2006-01-05 18:55:52 +01:00
|
|
|
sed -e "s^@coreutils\@^$coreutils^g" \
|
2006-01-07 23:16:37 +01:00
|
|
|
-e "s^@utillinux\@^$utillinux^g" \
|
2006-01-08 00:13:50 +01:00
|
|
|
-e "s^@gnugrep\@^$gnugrep^g" \
|
2006-01-08 00:18:00 +01:00
|
|
|
-e "s^@module-init-tools\@^$module_init_tools^g" \
|
2006-01-05 18:55:52 +01:00
|
|
|
< etc/hotplug/hotplug.functions > etc/hotplug/hotplug.functions.tmp
|
|
|
|
mv etc/hotplug/hotplug.functions.tmp etc/hotplug/hotplug.functions
|
|
|
|
|
|
|
|
sed -e "s^@coreutils\@^$coreutils^g" \
|
|
|
|
< etc/hotplug/input.rc > etc/hotplug/input.rc.tmp
|
|
|
|
mv etc/hotplug/input.rc.tmp etc/hotplug/input.rc
|
|
|
|
|
|
|
|
sed -e "s^@coreutils\@^$coreutils^g" \
|
|
|
|
< etc/hotplug/pci.rc > etc/hotplug/pci.rc.tmp
|
|
|
|
mv etc/hotplug/pci.rc.tmp etc/hotplug/pci.rc
|
|
|
|
|
2006-01-05 20:39:31 +01:00
|
|
|
sed -e "s^@gnused\@^$gnused^g" \
|
2006-01-07 19:09:18 +01:00
|
|
|
-e "s^@coreutils\@^$coreutils^g" \
|
2006-01-05 20:39:31 +01:00
|
|
|
< etc/hotplug/usb.agent > etc/hotplug/usb.agent.tmp
|
|
|
|
mv etc/hotplug/usb.agent.tmp etc/hotplug/usb.agent
|
|
|
|
|
2006-01-05 18:55:52 +01:00
|
|
|
sed -e "s^@coreutils\@^$coreutils^g" \
|
2006-01-05 20:30:22 +01:00
|
|
|
-e "s^@gnugrep\@^$gnugrep^g" \
|
|
|
|
-e "s^@utillinux\@^$utillinux^g" \
|
|
|
|
-e "s^@module_init_tools\@^$module_init_tools^g" \
|
|
|
|
-e "s^@gnused\@^$gnused^g" \
|
|
|
|
-e "s^@procps\@^$procps^g" \
|
2006-01-05 18:55:52 +01:00
|
|
|
< etc/hotplug/usb.rc > etc/hotplug/usb.rc.tmp
|
|
|
|
mv etc/hotplug/usb.rc.tmp etc/hotplug/usb.rc
|
|
|
|
|
2006-01-05 17:31:29 +01:00
|
|
|
sed -e "s^@bash\@^$bash^g" \
|
2006-01-05 18:41:15 +01:00
|
|
|
-e "s^@gnused\@^$gnused^g" \
|
|
|
|
-e "s^@coreutils\@^$coreutils^g" \
|
2006-01-05 17:31:29 +01:00
|
|
|
< etc/hotplug.d/default/default.hotplug > etc/hotplug.d/default/default.hotplug.tmp
|
|
|
|
mv etc/hotplug.d/default/default.hotplug.tmp etc/hotplug.d/default/default.hotplug
|
|
|
|
}
|
|
|
|
|
|
|
|
genericBuild
|