summaryrefslogtreecommitdiffstats
path: root/initramfs/distro-specs
diff options
context:
space:
mode:
authorFelix Endres2007-06-04 00:06:49 +0200
committerFelix Endres2007-06-04 00:06:49 +0200
commit33e944fc04bdacc89ca6a21439f6ef9a04c0ce05 (patch)
treecfbd71259b884060cea886158106a2f4b0b27a12 /initramfs/distro-specs
parentProblem fixed for incomplete shells invoked by Makefile (Ubuntu 7.04, (diff)
downloadcore-33e944fc04bdacc89ca6a21439f6ef9a04c0ce05.tar.gz
core-33e944fc04bdacc89ca6a21439f6ef9a04c0ce05.tar.xz
core-33e944fc04bdacc89ca6a21439f6ef9a04c0ce05.zip
Fix for problem with cdrom device nodes and deletion of obsolete udev function
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1141 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initramfs/distro-specs')
-rw-r--r--initramfs/distro-specs/ubuntu/functions-6.1020
1 files changed, 0 insertions, 20 deletions
diff --git a/initramfs/distro-specs/ubuntu/functions-6.10 b/initramfs/distro-specs/ubuntu/functions-6.10
index 7f8ed4b9..e37b37ef 100644
--- a/initramfs/distro-specs/ubuntu/functions-6.10
+++ b/initramfs/distro-specs/ubuntu/functions-6.10
@@ -33,26 +33,6 @@ config_distro () {
# how that is done for upstart??
}
-# udev/hotplug - auto device discovery service
-# fixme: why does nothing happens here!? If default should be used just
-# skip that function here!!
-# Result: 1 is bad, 0 is good
-udev_hotplug () {
- local result=0
- [ -d /etc/hotplug -a -d /etc/hotplug.d ] || error "$df_errhotpl" nonfatal
- echo "Enabling hotplug/udev"
- #udevstart && result=0
- #udevtrigger && result=0
- udevd --daemon || result=1
- [ ! -e /sbin/udevsend ] && result=1
- echo "/sbin/udevsend/" > /proc/sys/kernel/hotplug
- mkdir -p /dev/.udev/db /dev/.udev/queue
- trigger_device_events
- return $result
-:
-}
-
-