summaryrefslogtreecommitdiff
path: root/recipes/mdev/mdev-1.2.1/firmware
diff options
context:
space:
mode:
authorDenis 'Gnutoo' Carikli <GNUtoo@no-log.org>2009-09-27 22:10:54 +0200
committerDenis 'Gnutoo' Carikli <GNUtoo@no-log.org>2009-09-27 22:10:54 +0200
commitde576627a2b56ce347f7b58d0a784b9bd045b66a (patch)
tree5c415a65399a5206a38d9e4c0ed1f71bc2b6fb9b /recipes/mdev/mdev-1.2.1/firmware
parentea0b022b71fa7a217f963fe735439c025341fea3 (diff)
mdev,micro-base-image: removing mdev,because there is already "busybox-mdev"
mdev recipe was useless and had an empty config(mdev.conf) That caused some issues such as not beeing able to boot moreover I was told that I could drop it: "Please go ahead and drop it :-)"
Diffstat (limited to 'recipes/mdev/mdev-1.2.1/firmware')
-rw-r--r--recipes/mdev/mdev-1.2.1/firmware14
1 files changed, 0 insertions, 14 deletions
diff --git a/recipes/mdev/mdev-1.2.1/firmware b/recipes/mdev/mdev-1.2.1/firmware
deleted file mode 100644
index c88d3fbe22..0000000000
--- a/recipes/mdev/mdev-1.2.1/firmware
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-firmwaredir=/lib/firmware
-
-if test "$SUBSYSTEM" = "firmware" -a "$ACTION" = "add"; then
- if test -f $firmwaredir/$FIRMWARE; then
- echo 1 > /sys/$DEVPATH/loading
- cat $firmwaredir/$FIRMWARE > /sys/$DEVPATH/data
- echo 0 > /sys/$DEVPATH/loading
- else
- echo -1 > /sys/$DEVPATH/loading
- fi
-fi
-