From e75dd3b57c247e650277f26f4f1b5ade3bd0f620 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Fri, 26 May 2006 15:37:34 +0000 Subject: Moved udev hook/install to udev package Added destination name for add_binary git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@116 880c04e9-e011-0410-abf7-b926e227c9cd --- functions | 4 ++-- hooks/udev | 7 ------- install/udev | 26 -------------------------- 3 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 hooks/udev delete mode 100644 install/udev diff --git a/functions b/functions index beb4a3e..715b555 100644 --- a/functions +++ b/functions @@ -155,10 +155,10 @@ add_binary () case "${type}" in *script*) msg " adding '${type}' script, ensure proper interp exists..." - add_file "${bin}" + add_file "${bin}" "${2}" ;; *executable*) - add_file "${bin}" + add_file "${bin}" "${2}" #note, this will also handle 'not a dynamic executable' spit out by # static binaries... the deps will produce nothing for lib in $(ldd ${bin} 2>/dev/null | sed "s|.*=>\(.*\)|\1|"); do diff --git a/hooks/udev b/hooks/udev deleted file mode 100644 index fc4c814..0000000 --- a/hooks/udev +++ /dev/null @@ -1,7 +0,0 @@ -# vim: set ft=sh: -run_hook () -{ - msg -n ":: Loading udev..." - /etc/start_udev - msg "done." -} diff --git a/install/udev b/install/udev deleted file mode 100644 index e4fdc67..0000000 --- a/install/udev +++ /dev/null @@ -1,26 +0,0 @@ -# vim:set ft=sh: - -install () -{ - MODULES="" - BINARIES="" - FILES=" /etc/udev/udev.conf" - SCRIPT="udev" - add_file /lib/initcpio/udev/udevd /sbin/udevd - add_file /lib/initcpio/udev/udevtrigger /sbin/udevtrigger - add_file /lib/initcpio/udev/udevsettle /sbin/udevsettle - add_file /lib/initcpio/udev/udev.rules /etc/udev/rules.d/udev.rules - add_file /lib/initcpio/udev/start_udev /etc/start_udev - add_file /lib/initcpio/udev/modalias_ieee1394 /lib/udev/modalias_ieee1394 - add_file /lib/initcpio/udev/firmware_helper /lib/udev/firmware_helper - add_file /lib/initcpio/udev/cdrom_id /lib/udev/cdrom_id -} - -help () -{ -cat <