udev: Prune old obsolete broken versions (058, 063, 065, 070, 071).
authorRichard Purdie <rpurdie@rpsys.net>
Tue, 15 Aug 2006 19:30:15 +0000 (19:30 +0000)
committerRichard Purdie <rpurdie@rpsys.net>
Tue, 15 Aug 2006 19:30:15 +0000 (19:30 +0000)
23 files changed:
packages/udev/udev-058/.mtn2git_empty [deleted file]
packages/udev/udev-058/flags.patch [deleted file]
packages/udev/udev-058/init [deleted file]
packages/udev/udev-058/noasmlinkage.patch [deleted file]
packages/udev/udev-063/.mtn2git_empty [deleted file]
packages/udev/udev-063/flags.patch [deleted file]
packages/udev/udev-063/init [deleted file]
packages/udev/udev-063/tty-symlinks.patch [deleted file]
packages/udev/udev-065/.mtn2git_empty [deleted file]
packages/udev/udev-065/flags.patch [deleted file]
packages/udev/udev-065/init [deleted file]
packages/udev/udev-065/tty-symlinks.patch [deleted file]
packages/udev/udev-070/.mtn2git_empty [deleted file]
packages/udev/udev-070/flags.patch [deleted file]
packages/udev/udev-070/tty-symlinks.patch [deleted file]
packages/udev/udev-071/.mtn2git_empty [deleted file]
packages/udev/udev-071/flags.patch [deleted file]
packages/udev/udev-071/tty-symlinks.patch [deleted file]
packages/udev/udev_058.bb [deleted file]
packages/udev/udev_063.bb [deleted file]
packages/udev/udev_065.bb [deleted file]
packages/udev/udev_070.bb [deleted file]
packages/udev/udev_071.bb [deleted file]

diff --git a/packages/udev/udev-058/.mtn2git_empty b/packages/udev/udev-058/.mtn2git_empty
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/packages/udev/udev-058/flags.patch b/packages/udev/udev-058/flags.patch
deleted file mode 100644 (file)
index f67024d..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- udev-058/Makefile~flags.patch
-+++ udev-058/Makefile
-@@ -153,16 +153,17 @@
- SYSFS = $(PWD)/libsysfs/sysfs.a
--CFLAGS +=     -I$(PWD)/libsysfs/sysfs \
-+override CFLAGS +=    -I$(PWD)/libsysfs/sysfs \
-               -I$(PWD)/libsysfs
- ifeq ($(strip $(USE_LOG)),true)
--      CFLAGS += -DUSE_LOG
-+override      CFLAGS += -DUSE_LOG
- endif
- # if DEBUG is enabled, then we do not strip or optimize
- ifeq ($(strip $(DEBUG)),true)
--      CFLAGS  += -O1 -g -DDEBUG
-+      CFLAGS  += -O1 -g
-+      override CFLAGS += -DDEBUG
-       LDFLAGS += -Wl
-       STRIPCMD = /bin/true -Since_we_are_debugging
- else
-@@ -178,9 +179,9 @@
-       KLCC            = $(KLIBC_INSTALL)/bin/klcc
-       CC              = $(KLCC)
-       LD              = $(KLCC)
--      LDFLAGS         += -static
-+      override LDFLAGS                += -static
- else
--      CFLAGS          += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-+      override CFLAGS         += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
- endif
- ifeq ($(strip $(USE_SELINUX)),true)
diff --git a/packages/udev/udev-058/init b/packages/udev/udev-058/init
deleted file mode 100644 (file)
index a213463..0000000
+++ /dev/null
@@ -1,178 +0,0 @@
-#!/bin/sh -e
-
-PATH="/usr/sbin:/usr/bin:/sbin:/bin"
-
-UDEVSTART=/sbin/udevstart
-
-# default maximum size of the /dev ramfs
-ramfs_size="1M"
-
-[ -x $UDEVSTART ] || exit 0
-
-. /etc/udev/udev.conf
-
-case "$(uname -r)" in
-  2.[012345].*)
-    echo "udev requires a kernel >= 2.6, not started."
-    exit 0
-    ;;
-esac
-
-if ! grep -q '[[:space:]]ramfs$' /proc/filesystems; then
-    echo "udev requires ramfs support, not started."
-    exit 0
-fi
-
-if [ ! -e /proc/sys/kernel/hotplug ] && [ ! -e /sys/kernel/uevent_helper ] ; then
-    echo "udev requires hotplug support, not started."
-    exit 0
-fi
-
-##############################################################################
-
-# we need to unmount /dev/pts/ and remount it later over the ramfs
-unmount_devpts() {
-  if mountpoint -q /dev/pts/; then
-    umount -l /dev/pts/
-  fi
-
-  if mountpoint -q /dev/shm/; then
-    umount -l /dev/shm/
-  fi
-}
-
-# mount a ramfs over /dev, if somebody did not already do it
-mount_ramfs() {
-  if grep -E -q "^[^[:space:]]+ /dev ramfs" /proc/mounts; then
-    return 0
-  fi
-
-  # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
-  # if you don't like this, remove /.dev/.
-  [ -d /.dev ] && mount --bind /dev /.dev
-
-  echo -n "Mounting a ramfs over /dev..."
-  mount -n -o size=$ramfs_size,mode=0755 -t ramfs none /dev
-  echo "done."
-}
-
-# I hate this hack.  -- Md
-make_extra_nodes() {
- if [ -f /etc/udev/links.conf ]; then
-  grep '^[^#]' /etc/udev/links.conf | \
-  while read type name arg1; do
-    [ "$type" -a "$name" -a ! -e "/dev/$name" -a ! -L "/dev/$name" ] ||continue
-    case "$type" in
-    L)
-      ln -s $arg1 /dev/$name
-      ;;
-    D)
-      mkdir -p /dev/$name
-      ;;
-    M)
-      mknod -m 600 /dev/$name $arg1
-      ;;
-    *)
-      echo "unparseable line ($type $name $arg1)"
-      ;;
-    esac
-  done
- fi
-}
-
-##############################################################################
-
-if [ "$udev_root" != "/dev" ]; then
-  echo "WARNING: udev_root != /dev"
-
-case "$1" in
-  start)
-    if [ -e "$udev_root/.udev.tdb" ]; then
-      if mountpoint -q /dev/; then
-        echo "FATAL: udev is already active on $udev_root."
-        exit 1
-      else
-        echo "WARNING: .udev.tdb already exists on the old $udev_root!"
-      fi
-    fi
-    mount -n -o size=$ramfs_size,mode=0755 -t ramfs none $udev_root
-    echo -n "Creating initial device nodes..."
-    $UDEVSTART
-    echo "done."
-    ;;
-  stop)
-    start-stop-daemon -K -x /sbin/udevd 
-    echo -n "Unmounting $udev_root..."
-    # unmounting with -l should never fail
-    if umount -l $udev_root; then
-      echo "done."
-    else
-      echo "failed."
-    fi
-    ;;
-  restart|force-reload)
-    $0 stop
-    $0 start
-    ;;
-  *)
-    echo "Usage: /etc/init.d/udev {start|stop|restart|force-reload}"
-    exit 1
-    ;;
-esac
-
-  exit 0
-fi # udev_root != /dev/
-
-##############################################################################
-# When modifying this script, do not forget that between the time that
-# the new /dev has been mounted and udevstart has been run there will be
-# no /dev/null. This also means that you cannot use the "&" shell command.
-
-case "$1" in
-  start)
-    if [ -e "$udev_root/.udev.tdb" ]; then
-      if mountpoint -q /dev/; then
-        echo "FATAL: udev is already active on $udev_root."
-        exit 1
-      else
-        echo "WARNING: .udev.tdb already exists on the old $udev_root!"
-      fi
-    fi
-    unmount_devpts
-    mount_ramfs
-    ACTION=add
-    echo -n "Creating initial device nodes..."
-    $UDEVSTART
-    make_extra_nodes
-    echo "done."
-#    /etc/init.d/mountvirtfs start
-    ;;
-  stop)
-    start-stop-daemon -K -x /sbin/udevd 
-    unmount_devpts
-    echo -n "Unmounting /dev..."
-    # unmounting with -l should never fail
-    if umount -l /dev; then
-      echo "done."
-      umount -l /.dev || true
-#      /etc/init.d/mountvirtfs start
-    else
-      echo "failed."
-    fi
-    ;;
-  restart|force-reload)
-    start-stop-daemon -K -x /sbin/udevd 
-    echo -n "Recreating device nodes..."
-    ACTION=add
-    $UDEVSTART
-    make_extra_nodes
-    echo "done."
-    ;;
-  *)
-    echo "Usage: /etc/init.d/udev {start|stop|restart|force-reload}"
-    exit 1
-    ;;
-esac
-
-exit 0
-
diff --git a/packages/udev/udev-058/noasmlinkage.patch b/packages/udev/udev-058/noasmlinkage.patch
deleted file mode 100644 (file)
index 1694d4d..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- udev-042/udev.c~noasmlinkage
-+++ udev-042/udev.c
-@@ -60,7 +60,7 @@
- }
- #endif
--static void asmlinkage sig_handler(int signum)
-+static void sig_handler(int signum)
- {
-       switch (signum) {
-               case SIGALRM:
---- udev-042/udevd.c~noasmlinkage
-+++ udev-042/udevd.c
-@@ -308,7 +308,7 @@
-       return;
- }
--static void asmlinkage sig_handler(int signum)
-+static void sig_handler(int signum)
- {
-       int rc;
diff --git a/packages/udev/udev-063/.mtn2git_empty b/packages/udev/udev-063/.mtn2git_empty
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/packages/udev/udev-063/flags.patch b/packages/udev/udev-063/flags.patch
deleted file mode 100644 (file)
index e6969f2..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- udev-062/Makefile~flags.patch
-+++ udev-062/Makefile
-@@ -151,16 +151,17 @@
- SYSFS = $(PWD)/libsysfs/sysfs.a
--CFLAGS +=     -I$(PWD)/libsysfs/sysfs \
-+override CFLAGS +=    -I$(PWD)/libsysfs/sysfs \
-               -I$(PWD)/libsysfs
- ifeq ($(strip $(USE_LOG)),true)
--      CFLAGS += -DUSE_LOG
-+      override CFLAGS += -DUSE_LOG
- endif
- # if DEBUG is enabled, then we do not strip or optimize
- ifeq ($(strip $(DEBUG)),true)
--      CFLAGS  += -O1 -g -DDEBUG
-+      CFLAGS  += -O1 -g
-+      override CFLAGS += -DDEBUG
-       LDFLAGS += -Wl
-       STRIPCMD = /bin/true -Since_we_are_debugging
- else
-@@ -176,19 +177,20 @@
-       KLCC            = $(KLIBC_INSTALL)/bin/$(CROSS)klcc
-       CC              = $(KLCC)
-       LD              = $(KLCC)
-+      override LDFLAGS += -static
- else
--      CFLAGS          += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-+      override CFLAGS         += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
- endif
- ifeq ($(strip $(USE_SELINUX)),true)
-       UDEV_OBJS += udev_selinux.o
-       LIB_OBJS += -lselinux
--      CFLAGS += -DUSE_SELINUX
-+      override CFLAGS += -DUSE_SELINUX
- endif
- ifeq ($(strip $(USE_STATIC)),true)
--      CFLAGS += -DUSE_STATIC
--      LDFLAGS += -static
-+      override CFLAGS += -DUSE_STATIC
-+      override LDFLAGS += -static
- endif
- ifeq ($(strip $(V)),false)
diff --git a/packages/udev/udev-063/init b/packages/udev/udev-063/init
deleted file mode 100644 (file)
index 67886c9..0000000
+++ /dev/null
@@ -1,178 +0,0 @@
-#!/bin/sh -e
-
-PATH="/usr/sbin:/usr/bin:/sbin:/bin"
-
-UDEVSTART=/sbin/udevstart
-
-# default maximum size of the /dev ramfs
-ramfs_size="1M"
-
-[ -x $UDEVSTART ] || exit 0
-
-. /etc/udev/udev.conf
-
-case "$(uname -r)" in
-  2.[012345].*)
-    echo "udev requires a kernel >= 2.6, not started."
-    exit 0
-    ;;
-esac
-
-if ! grep -q '[[:space:]]ramfs$' /proc/filesystems; then
-    echo "udev requires ramfs support, not started."
-    exit 0
-fi
-
-if [ ! -e /proc/sys/kernel/hotplug ] && [ ! -e /sys/kernel/uevent_helper ]; then
-    echo "udev requires hotplug support, not started."
-    exit 0
-fi
-
-##############################################################################
-
-# we need to unmount /dev/pts/ and remount it later over the ramfs
-unmount_devpts() {
-  if mountpoint -q /dev/pts/; then
-    umount -l /dev/pts/
-  fi
-
-  if mountpoint -q /dev/shm/; then
-    umount -l /dev/shm/
-  fi
-}
-
-# mount a ramfs over /dev, if somebody did not already do it
-mount_ramfs() {
-  if grep -E -q "^[^[:space:]]+ /dev ramfs" /proc/mounts; then
-    return 0
-  fi
-
-  # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
-  # if you don't like this, remove /.dev/.
-  [ -d /.dev ] && mount --bind /dev /.dev
-
-  echo -n "Mounting a ramfs over /dev..."
-  mount -n -o size=$ramfs_size,mode=0755 -t ramfs none /dev
-  echo "done."
-}
-
-# I hate this hack.  -- Md
-make_extra_nodes() {
- if [ -f /etc/udev/links.conf ]; then
-  grep '^[^#]' /etc/udev/links.conf | \
-  while read type name arg1; do
-    [ "$type" -a "$name" -a ! -e "/dev/$name" -a ! -L "/dev/$name" ] ||continue
-    case "$type" in
-    L)
-      ln -s $arg1 /dev/$name
-      ;;
-    D)
-      mkdir -p /dev/$name
-      ;;
-    M)
-      mknod -m 600 /dev/$name $arg1
-      ;;
-    *)
-      echo "unparseable line ($type $name $arg1)"
-      ;;
-    esac
-  done
- fi
-}
-
-##############################################################################
-
-if [ "$udev_root" != "/dev" ]; then
-  echo "WARNING: udev_root != /dev"
-
-case "$1" in
-  start)
-    if [ -e "$udev_root/.udev.tdb" ]; then
-      if mountpoint -q /dev/; then
-        echo "FATAL: udev is already active on $udev_root."
-        exit 1
-      else
-        echo "WARNING: .udev.tdb already exists on the old $udev_root!"
-      fi
-    fi
-    mount -n -o size=$ramfs_size,mode=0755 -t ramfs none $udev_root
-    echo -n "Creating initial device nodes..."
-    $UDEVSTART
-    echo "done."
-    ;;
-  stop)
-    start-stop-daemon -K -x /sbin/udevd 
-    echo -n "Unmounting $udev_root..."
-    # unmounting with -l should never fail
-    if umount -l $udev_root; then
-      echo "done."
-    else
-      echo "failed."
-    fi
-    ;;
-  restart|force-reload)
-    $0 stop
-    $0 start
-    ;;
-  *)
-    echo "Usage: /etc/init.d/udev {start|stop|restart|force-reload}"
-    exit 1
-    ;;
-esac
-
-  exit 0
-fi # udev_root != /dev/
-
-##############################################################################
-# When modifying this script, do not forget that between the time that
-# the new /dev has been mounted and udevstart has been run there will be
-# no /dev/null. This also means that you cannot use the "&" shell command.
-
-case "$1" in
-  start)
-    if [ -e "$udev_root/.udev.tdb" ]; then
-      if mountpoint -q /dev/; then
-        echo "FATAL: udev is already active on $udev_root."
-        exit 1
-      else
-        echo "WARNING: .udev.tdb already exists on the old $udev_root!"
-      fi
-    fi
-    unmount_devpts
-    mount_ramfs
-    ACTION=add
-    echo -n "Creating initial device nodes..."
-    $UDEVSTART
-    make_extra_nodes
-    echo "done."
-#    /etc/init.d/mountvirtfs start
-    ;;
-  stop)
-    start-stop-daemon -K -x /sbin/udevd 
-    unmount_devpts
-    echo -n "Unmounting /dev..."
-    # unmounting with -l should never fail
-    if umount -l /dev; then
-      echo "done."
-      umount -l /.dev || true
-#      /etc/init.d/mountvirtfs start
-    else
-      echo "failed."
-    fi
-    ;;
-  restart|force-reload)
-    start-stop-daemon -K -x /sbin/udevd 
-    echo -n "Recreating device nodes..."
-    ACTION=add
-    $UDEVSTART
-    make_extra_nodes
-    echo "done."
-    ;;
-  *)
-    echo "Usage: /etc/init.d/udev {start|stop|restart|force-reload}"
-    exit 1
-    ;;
-esac
-
-exit 0
-
diff --git a/packages/udev/udev-063/tty-symlinks.patch b/packages/udev/udev-063/tty-symlinks.patch
deleted file mode 100644 (file)
index 6a458de..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- udev-063/etc/udev/udev.rules.devfs.orig    2005-07-27 19:55:51 +0200
-+++ udev-063/etc/udev/udev.rules.devfs 2005-07-27 19:56:49 +0200
-@@ -103,3 +103,8 @@
- # raw devices
- KERNEL="raw[0-9]*",     NAME="raw/%k" 
-+
-+# tty devices
-+KERNEL=="tty[0-9]*",            SYMLINK="%k"
-+KERNEL=="ttyS[0-9]*",           SYMLINK="%k"
-+
diff --git a/packages/udev/udev-065/.mtn2git_empty b/packages/udev/udev-065/.mtn2git_empty
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/packages/udev/udev-065/flags.patch b/packages/udev/udev-065/flags.patch
deleted file mode 100644 (file)
index d95daa5..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- udev-065/Makefile~flags
-+++ udev-065/Makefile
-@@ -106,11 +106,11 @@
- # check if compiler option is supported
- cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi;}
--CFLAGS                += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith \
-+override CFLAGS               += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith \
-                  -Wstrict-prototypes -Wsign-compare
--CFLAGS                += $(call cc-supports, -Wdeclaration-after-statement, )
--CFLAGS                += -pipe
--CFLAGS                += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
-+override CFLAGS               += $(call cc-supports, -Wdeclaration-after-statement, )
-+override CFLAGS               += -pipe
-+override CFLAGS               += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
- # use '-Os' optimization if available, else use -O2
- OPTFLAGS := $(call cc-supports, -Os, -O2)
-@@ -154,16 +154,16 @@
- SYSFS = $(PWD)/libsysfs/sysfs.a
--CFLAGS +=     -I$(PWD)/libsysfs/sysfs \
-+override CFLAGS +=    -I$(PWD)/libsysfs/sysfs \
-               -I$(PWD)/libsysfs
- ifeq ($(strip $(USE_LOG)),true)
--      CFLAGS += -DUSE_LOG
-+      override CFLAGS += -DUSE_LOG
- endif
- # if DEBUG is enabled, then we do not strip or optimize
- ifeq ($(strip $(DEBUG)),true)
--      CFLAGS  += -O1 -g -DDEBUG
-+      override CFLAGS  += -DDEBUG
-       LDFLAGS += -Wl
-       STRIPCMD = /bin/true -Since_we_are_debugging
- else
-@@ -180,18 +180,18 @@
-       CC              = $(KLCC)
-       LD              = $(KLCC)
- else
--      CFLAGS          += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-+      override CFLAGS         += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
- endif
- ifeq ($(strip $(USE_SELINUX)),true)
-       UDEV_OBJS += udev_selinux.o
-       LIB_OBJS += -lselinux
--      CFLAGS += -DUSE_SELINUX
-+      override CFLAGS += -DUSE_SELINUX
- endif
- ifeq ($(strip $(USE_STATIC)),true)
--      CFLAGS += -DUSE_STATIC
--      LDFLAGS += -static
-+      override CFLAGS += -DUSE_STATIC
-+      override LDFLAGS += -static
- endif
- ifeq ($(strip $(V)),false)
diff --git a/packages/udev/udev-065/init b/packages/udev/udev-065/init
deleted file mode 100644 (file)
index 67886c9..0000000
+++ /dev/null
@@ -1,178 +0,0 @@
-#!/bin/sh -e
-
-PATH="/usr/sbin:/usr/bin:/sbin:/bin"
-
-UDEVSTART=/sbin/udevstart
-
-# default maximum size of the /dev ramfs
-ramfs_size="1M"
-
-[ -x $UDEVSTART ] || exit 0
-
-. /etc/udev/udev.conf
-
-case "$(uname -r)" in
-  2.[012345].*)
-    echo "udev requires a kernel >= 2.6, not started."
-    exit 0
-    ;;
-esac
-
-if ! grep -q '[[:space:]]ramfs$' /proc/filesystems; then
-    echo "udev requires ramfs support, not started."
-    exit 0
-fi
-
-if [ ! -e /proc/sys/kernel/hotplug ] && [ ! -e /sys/kernel/uevent_helper ]; then
-    echo "udev requires hotplug support, not started."
-    exit 0
-fi
-
-##############################################################################
-
-# we need to unmount /dev/pts/ and remount it later over the ramfs
-unmount_devpts() {
-  if mountpoint -q /dev/pts/; then
-    umount -l /dev/pts/
-  fi
-
-  if mountpoint -q /dev/shm/; then
-    umount -l /dev/shm/
-  fi
-}
-
-# mount a ramfs over /dev, if somebody did not already do it
-mount_ramfs() {
-  if grep -E -q "^[^[:space:]]+ /dev ramfs" /proc/mounts; then
-    return 0
-  fi
-
-  # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
-  # if you don't like this, remove /.dev/.
-  [ -d /.dev ] && mount --bind /dev /.dev
-
-  echo -n "Mounting a ramfs over /dev..."
-  mount -n -o size=$ramfs_size,mode=0755 -t ramfs none /dev
-  echo "done."
-}
-
-# I hate this hack.  -- Md
-make_extra_nodes() {
- if [ -f /etc/udev/links.conf ]; then
-  grep '^[^#]' /etc/udev/links.conf | \
-  while read type name arg1; do
-    [ "$type" -a "$name" -a ! -e "/dev/$name" -a ! -L "/dev/$name" ] ||continue
-    case "$type" in
-    L)
-      ln -s $arg1 /dev/$name
-      ;;
-    D)
-      mkdir -p /dev/$name
-      ;;
-    M)
-      mknod -m 600 /dev/$name $arg1
-      ;;
-    *)
-      echo "unparseable line ($type $name $arg1)"
-      ;;
-    esac
-  done
- fi
-}
-
-##############################################################################
-
-if [ "$udev_root" != "/dev" ]; then
-  echo "WARNING: udev_root != /dev"
-
-case "$1" in
-  start)
-    if [ -e "$udev_root/.udev.tdb" ]; then
-      if mountpoint -q /dev/; then
-        echo "FATAL: udev is already active on $udev_root."
-        exit 1
-      else
-        echo "WARNING: .udev.tdb already exists on the old $udev_root!"
-      fi
-    fi
-    mount -n -o size=$ramfs_size,mode=0755 -t ramfs none $udev_root
-    echo -n "Creating initial device nodes..."
-    $UDEVSTART
-    echo "done."
-    ;;
-  stop)
-    start-stop-daemon -K -x /sbin/udevd 
-    echo -n "Unmounting $udev_root..."
-    # unmounting with -l should never fail
-    if umount -l $udev_root; then
-      echo "done."
-    else
-      echo "failed."
-    fi
-    ;;
-  restart|force-reload)
-    $0 stop
-    $0 start
-    ;;
-  *)
-    echo "Usage: /etc/init.d/udev {start|stop|restart|force-reload}"
-    exit 1
-    ;;
-esac
-
-  exit 0
-fi # udev_root != /dev/
-
-##############################################################################
-# When modifying this script, do not forget that between the time that
-# the new /dev has been mounted and udevstart has been run there will be
-# no /dev/null. This also means that you cannot use the "&" shell command.
-
-case "$1" in
-  start)
-    if [ -e "$udev_root/.udev.tdb" ]; then
-      if mountpoint -q /dev/; then
-        echo "FATAL: udev is already active on $udev_root."
-        exit 1
-      else
-        echo "WARNING: .udev.tdb already exists on the old $udev_root!"
-      fi
-    fi
-    unmount_devpts
-    mount_ramfs
-    ACTION=add
-    echo -n "Creating initial device nodes..."
-    $UDEVSTART
-    make_extra_nodes
-    echo "done."
-#    /etc/init.d/mountvirtfs start
-    ;;
-  stop)
-    start-stop-daemon -K -x /sbin/udevd 
-    unmount_devpts
-    echo -n "Unmounting /dev..."
-    # unmounting with -l should never fail
-    if umount -l /dev; then
-      echo "done."
-      umount -l /.dev || true
-#      /etc/init.d/mountvirtfs start
-    else
-      echo "failed."
-    fi
-    ;;
-  restart|force-reload)
-    start-stop-daemon -K -x /sbin/udevd 
-    echo -n "Recreating device nodes..."
-    ACTION=add
-    $UDEVSTART
-    make_extra_nodes
-    echo "done."
-    ;;
-  *)
-    echo "Usage: /etc/init.d/udev {start|stop|restart|force-reload}"
-    exit 1
-    ;;
-esac
-
-exit 0
-
diff --git a/packages/udev/udev-065/tty-symlinks.patch b/packages/udev/udev-065/tty-symlinks.patch
deleted file mode 100644 (file)
index 6a458de..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- udev-063/etc/udev/udev.rules.devfs.orig    2005-07-27 19:55:51 +0200
-+++ udev-063/etc/udev/udev.rules.devfs 2005-07-27 19:56:49 +0200
-@@ -103,3 +103,8 @@
- # raw devices
- KERNEL="raw[0-9]*",     NAME="raw/%k" 
-+
-+# tty devices
-+KERNEL=="tty[0-9]*",            SYMLINK="%k"
-+KERNEL=="ttyS[0-9]*",           SYMLINK="%k"
-+
diff --git a/packages/udev/udev-070/.mtn2git_empty b/packages/udev/udev-070/.mtn2git_empty
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/packages/udev/udev-070/flags.patch b/packages/udev/udev-070/flags.patch
deleted file mode 100644 (file)
index bd04041..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
---- udev-070/Makefile~flags    2005-09-15 01:19:07 +0200
-+++ udev-070/Makefile  2005-09-16 11:44:37 +0200
-@@ -160,36 +160,36 @@
- # check if compiler option is supported
- cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi;}
--CFLAGS                += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith \
-+override CFLAGS               += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith \
-                  -Wstrict-prototypes -Wsign-compare
--CFLAGS                += $(call cc-supports, -Wdeclaration-after-statement, )
--CFLAGS                += -pipe
--CFLAGS                += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
-+override CFLAGS               += $(call cc-supports, -Wdeclaration-after-statement, )
-+override CFLAGS               += -pipe
-+override CFLAGS               += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
- # use '-Os' optimization if available, else use -O2
- OPTFLAGS := $(call cc-supports, -Os, -O2)
- # include our local copy of libsysfs
--CFLAGS +=     -I$(PWD)/libsysfs/sysfs \
-+override CFLAGS +=    -I$(PWD)/libsysfs/sysfs \
-               -I$(PWD)/libsysfs
- ifeq ($(strip $(USE_LOG)),true)
--      CFLAGS += -DUSE_LOG
-+      override CFLAGS += -DUSE_LOG
- endif
- # if DEBUG is enabled, then we do not strip or optimize
- ifeq ($(strip $(DEBUG)),true)
--      CFLAGS  += -O1 -g -DDEBUG
-+      override CFLAGS  += -O1 -g -DDEBUG
-       LDFLAGS += -Wl
-       STRIPCMD = /bin/true -Since_we_are_debugging
- else
--      CFLAGS  += $(OPTFLAGS) -fomit-frame-pointer
-+      override CFLAGS  += $(OPTFLAGS) -fomit-frame-pointer
-       LDFLAGS += -s -Wl
-       STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
- endif
- ifeq ($(strip $(USE_GCOV)),true)
--      CFLAGS += -fprofile-arcs -ftest-coverage
-+      override CFLAGS += -fprofile-arcs -ftest-coverage
-       LDFLAGS = -fprofile-arcs
- endif
-@@ -200,18 +200,18 @@
-       CC              = $(KLCC)
-       LD              = $(KLCC)
- else
--      CFLAGS          += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-+      override CFLAGS         += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-       LDFLAGS         += -Wl,-warn-common
- endif
- ifeq ($(strip $(USE_SELINUX)),true)
-       UDEV_OBJS += udev_selinux.o
-       LIB_OBJS += -lselinux
--      CFLAGS += -DUSE_SELINUX
-+      override CFLAGS += -DUSE_SELINUX
- endif
- ifeq ($(strip $(USE_STATIC)),true)
--      CFLAGS += -DUSE_STATIC
-+      override CFLAGS += -DUSE_STATIC
-       LDFLAGS += -static
- endif
diff --git a/packages/udev/udev-070/tty-symlinks.patch b/packages/udev/udev-070/tty-symlinks.patch
deleted file mode 100644 (file)
index 28bdf92..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
---- udev-068/etc/udev/udev-devfs.rules.orig    2005-08-22 20:22:18.000000000 +0200
-+++ udev-068/etc/udev/udev-devfs.rules 2005-08-22 20:22:44.000000000 +0200
-@@ -14,8 +14,8 @@
- KERNEL="fd[0-9]*", NAME="floppy/%n"
- # tty devices
--KERNEL="tty[0-9]*",    NAME="vc/%n"
--KERNEL="ttyS[0-9]*",   NAME="tts/%n"
-+KERNEL="tty[0-9]*",    NAME="vc/%n", SYMLINK="%k"
-+KERNEL="ttyS[0-9]*",   NAME="tts/%n", SYMLINK="%k"
- KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n"
- # vc devices
diff --git a/packages/udev/udev-071/.mtn2git_empty b/packages/udev/udev-071/.mtn2git_empty
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/packages/udev/udev-071/flags.patch b/packages/udev/udev-071/flags.patch
deleted file mode 100644 (file)
index cb17336..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-Index: udev-071/Makefile
-===================================================================
---- udev-071.orig/Makefile     2005-10-19 23:28:34.000000000 +0100
-+++ udev-071/Makefile  2005-11-01 22:04:31.000000000 +0000
-@@ -160,36 +160,36 @@
- # check if compiler option is supported
- cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi;}
--CFLAGS                += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith \
-+override CFLAGS               += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith \
-                  -Wstrict-prototypes -Wsign-compare
--CFLAGS                += $(call cc-supports, -Wdeclaration-after-statement, )
--CFLAGS                += -pipe
--CFLAGS                += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
-+override CFLAGS               += $(call cc-supports, -Wdeclaration-after-statement, )
-+override CFLAGS               += -pipe
-+override CFLAGS               += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
- # use '-Os' optimization if available, else use -O2
- OPTFLAGS := $(call cc-supports, -Os, -O2)
- # include our local copy of libsysfs
--CFLAGS +=     -I$(PWD)/libsysfs/sysfs \
-+override CFLAGS +=    -I$(PWD)/libsysfs/sysfs \
-               -I$(PWD)/libsysfs
- ifeq ($(strip $(USE_LOG)),true)
--      CFLAGS += -DUSE_LOG
-+      override CFLAGS += -DUSE_LOG
- endif
- # if DEBUG is enabled, then we do not strip or optimize
- ifeq ($(strip $(DEBUG)),true)
--      CFLAGS  += -O1 -g -DDEBUG
-+      override CFLAGS  += -O1 -g -DDEBUG
-       LDFLAGS += -Wl
-       STRIPCMD = /bin/true -Since_we_are_debugging
- else
--      CFLAGS  += $(OPTFLAGS) -fomit-frame-pointer
-+      override CFLAGS  += $(OPTFLAGS) -fomit-frame-pointer
-       LDFLAGS += -s -Wl
-       STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
- endif
- ifeq ($(strip $(USE_GCOV)),true)
--      CFLAGS += -fprofile-arcs -ftest-coverage
-+      override CFLAGS += -fprofile-arcs -ftest-coverage
-       LDFLAGS = -fprofile-arcs
- endif
-@@ -200,18 +200,18 @@
-       CC              = $(KLCC)
-       LD              = $(KLCC)
- else
--      CFLAGS          += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-+      override CFLAGS         += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
-       LDFLAGS         += -Wl,-warn-common
- endif
- ifeq ($(strip $(USE_SELINUX)),true)
-       UDEV_OBJS += udev_selinux.o
-       LIB_OBJS += -lselinux -lsepol
--      CFLAGS += -DUSE_SELINUX
-+      override CFLAGS += -DUSE_SELINUX
- endif
- ifeq ($(strip $(USE_STATIC)),true)
--      CFLAGS += -DUSE_STATIC
-+      override CFLAGS += -DUSE_STATIC
-       LDFLAGS += -static
- endif
diff --git a/packages/udev/udev-071/tty-symlinks.patch b/packages/udev/udev-071/tty-symlinks.patch
deleted file mode 100644 (file)
index 28bdf92..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
---- udev-068/etc/udev/udev-devfs.rules.orig    2005-08-22 20:22:18.000000000 +0200
-+++ udev-068/etc/udev/udev-devfs.rules 2005-08-22 20:22:44.000000000 +0200
-@@ -14,8 +14,8 @@
- KERNEL="fd[0-9]*", NAME="floppy/%n"
- # tty devices
--KERNEL="tty[0-9]*",    NAME="vc/%n"
--KERNEL="ttyS[0-9]*",   NAME="tts/%n"
-+KERNEL="tty[0-9]*",    NAME="vc/%n", SYMLINK="%k"
-+KERNEL="ttyS[0-9]*",   NAME="tts/%n", SYMLINK="%k"
- KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n"
- # vc devices
diff --git a/packages/udev/udev_058.bb b/packages/udev/udev_058.bb
deleted file mode 100644 (file)
index a6b4849..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
-          file://tmpfs.patch;patch=1 \
-          file://noasmlinkage.patch;patch=1 \
-          file://flags.patch;patch=1 \
-           file://permissions.rules \
-          file://init"
-
-require udev.inc
-
-PR = "r8"
-UDEV_EXTRAS = "extras/scsi_id/ extras/volume_id/"
diff --git a/packages/udev/udev_063.bb b/packages/udev/udev_063.bb
deleted file mode 100644 (file)
index 817da2d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
-           file://tmpfs.patch;patch=1 \
-           file://noasmlinkage.patch;patch=1 \
-           file://flags.patch;patch=1 \
-           file://fix-alignment.patch;patch=1 \
-           file://tty-symlinks.patch;patch=1"
-
-require udev.inc
-
-PR = "r7"
-UDEV_EXTRAS = "extras/scsi_id/ extras/volume_id/ extras/run_directory/"
-
-#FIXME UDEV MIGRATION PLAN:
-#FIXME      a) udevd is now a netlink daemon and needs to be started by the init script (ours is way too old)
-#FIXME      b) sbin/hotplug should no longer be called by the kernel, i.e. echo "" >/proc/sys/kernel/hotplug
-#FIXME done c) until d) happens, udev will emulate hotplugd behaviour (see do_install_append()
-#FIXME      d) eventually hotplug should no longer be used at all, all agents shall be converted to udev rules
-
-do_install_append() {
-       install -m 0755 extras/run_directory/udev_run_hotplugd ${D}${sbindir}/
-       echo RUN+="/sbin/udev_run_hotplugd" >>${D}${sysconfdir}/udev/rules.d/50-udev.rules
-}
diff --git a/packages/udev/udev_065.bb b/packages/udev/udev_065.bb
deleted file mode 100644 (file)
index 8c6d186..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
-           file://tmpfs.patch;patch=1 \
-           file://noasmlinkage.patch;patch=1 \
-           file://flags.patch;patch=1 \
-           file://tty-symlinks.patch;patch=1"
-
-require udev.inc
-
-PR = "r5"
-UDEV_EXTRAS = "extras/scsi_id/ extras/volume_id/ extras/run_directory/"
-
-#FIXME UDEV MIGRATION PLAN:
-#FIXME      a) udevd is now a netlink daemon and needs to be started by the init script (ours is way too old)
-#FIXME      b) sbin/hotplug should no longer be called by the kernel, i.e. echo "" >/proc/sys/kernel/hotplug
-#FIXME done c) until d) happens, udev will emulate hotplugd behaviour (see do_install_append()
-#FIXME      d) eventually hotplug should no longer be used at all, all agents shall be converted to udev rules
-
-do_install_append() {
-       install -m 0755 extras/run_directory/udev_run_hotplugd ${D}${sbindir}/
-       echo RUN+="/sbin/udev_run_hotplugd" >>${D}${sysconfdir}/udev/rules.d/50-udev.rules
-}
diff --git a/packages/udev/udev_070.bb b/packages/udev/udev_070.bb
deleted file mode 100644 (file)
index efd67a5..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
-           file://tmpfs.patch;patch=1 \
-           file://noasmlinkage.patch;patch=1 \
-           file://flags.patch;patch=1 \
-           file://tty-symlinks.patch;patch=1"
-
-require udev.inc
-
-PR = "r8"
-
-UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/"
-
-#FIXME UDEV MIGRATION PLAN:
-#FIXME      a) udevd is now a netlink daemon and needs to be started by the init script (ours is way too old)
-#FIXME      b) sbin/hotplug should no longer be called by the kernel, i.e. echo "" >/proc/sys/kernel/hotplug
-#FIXME done c) until d) happens, udev will emulate hotplugd behaviour (see do_install_append()
-#FIXME      d) eventually hotplug should no longer be used at all, all agents shall be converted to udev rules
diff --git a/packages/udev/udev_071.bb b/packages/udev/udev_071.bb
deleted file mode 100644 (file)
index 9878480..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
-           file://tmpfs.patch;patch=1 \
-           file://noasmlinkage.patch;patch=1 \
-           file://flags.patch;patch=1 \
-           file://tty-symlinks.patch;patch=1"
-
-require udev.inc
-
-PR = "r10"
-
-UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/"
-
-#FIXME UDEV MIGRATION PLAN:
-#FIXME      a) udevd is now a netlink daemon and needs to be started by the init script (ours is way too old)
-#FIXME      b) sbin/hotplug should no longer be called by the kernel, i.e. echo "" >/proc/sys/kernel/hotplug
-#FIXME done c) until d) happens, udev will emulate hotplugd behaviour (see do_install_append()
-#FIXME      d) eventually hotplug should no longer be used at all, all agents shall be converted to udev rules