diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-10-01 10:33:51 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-10-01 10:33:51 +0000 |
commit | 903d65b2f67a60eb01420bce896fdbcc1dc6318c (patch) | |
tree | f5254c2f003025a847509da485cea6190f8e6740 | |
parent | ae645af254285eba13381f7ea0c852c78b2ea11b (diff) |
revert 1.2355.1.1 which broke booting. you can't exchange one makedevs with another one. instead, the busybox makedevs has been disabled.
BKrev: 415d328fIH7BsDnb5VW4GR1Eoy_Rqg
-rw-r--r-- | busybox/busybox-1.00-rc3/defconfig | 2 | ||||
-rw-r--r-- | busybox/busybox_1.00-rc3.oe | 5 | ||||
-rw-r--r-- | initscripts/initscripts_1.0.oe | 6 | ||||
-rw-r--r-- | makedevs/makedevs_1.0.0.oe | 8 |
4 files changed, 9 insertions, 12 deletions
diff --git a/busybox/busybox-1.00-rc3/defconfig b/busybox/busybox-1.00-rc3/defconfig index 9deb97bcc3..8f0d1338c8 100644 --- a/busybox/busybox-1.00-rc3/defconfig +++ b/busybox/busybox-1.00-rc3/defconfig @@ -271,7 +271,7 @@ CONFIG_DC=y # CONFIG_DEVFSD is not set # CONFIG_LAST is not set # CONFIG_HDPARM is not set -CONFIG_MAKEDEVS=y +# CONFIG_MAKEDEVS is not set # CONFIG_MT is not set # CONFIG_RX is not set CONFIG_STRINGS=y diff --git a/busybox/busybox_1.00-rc3.oe b/busybox/busybox_1.00-rc3.oe index 3dc879acee..a544aba889 100644 --- a/busybox/busybox_1.00-rc3.oe +++ b/busybox/busybox_1.00-rc3.oe @@ -11,10 +11,7 @@ HOMEPAGE = "http://www.busybox.net" LICENSE = "GPL" SECTION = "base" PRIORITY = "required" -PR = "r11" - -PROVIDES = "virtual/makedevs" -RPROVIDES = "virtual/makedevs" +PR = "r12" # file://busybox-1.00-pre10-fuser.patch;patch=1 SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ diff --git a/initscripts/initscripts_1.0.oe b/initscripts/initscripts_1.0.oe index 62daf13dda..9c74eefffd 100644 --- a/initscripts/initscripts_1.0.oe +++ b/initscripts/initscripts_1.0.oe @@ -2,9 +2,9 @@ DESCRIPTION = "SysV init scripts" MAINTAINER = "Chris Larson <kergoth@handhelds.org>" SECTION = "base" PRIORITY = "required" -DEPENDS = "virtual/makedevs" -RDEPENDS = "virtual/makedevs" -PR = "r13" +DEPENDS = "makedevs" +RDEPENDS = "makedevs" +PR = "r14" SRC_URI = "file://halt \ file://ramdisk \ diff --git a/makedevs/makedevs_1.0.0.oe b/makedevs/makedevs_1.0.0.oe index b0a4350ab2..759884c387 100644 --- a/makedevs/makedevs_1.0.0.oe +++ b/makedevs/makedevs_1.0.0.oe @@ -1,9 +1,9 @@ +DESCRIPTION = "A tool to make device nodes" +SECTION = "base" +PRIORITY = "required" SRC_URI = "file://makedevs.c" S = "${WORKDIR}/makedevs-${PV}" -PR = "r1" - -PROVIDES = "virtual/makedevs" -RPROVIDES = "virtual/makedevs" +PR = "r2" do_configure() { install -m 0644 ${WORKDIR}/makedevs.c ${S}/ |