From 97004aa82d44c0fc90c1b0b49a796cc9b1927032 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Tue, 25 Apr 2006 05:34:44 +0000 Subject: Bug fixes - I broke some things with syntax errors git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@9 880c04e9-e011-0410-abf7-b926e227c9cd --- install/base | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'install/base') diff --git a/install/base b/install/base index 9cd2030..27edf15 100644 --- a/install/base +++ b/install/base @@ -6,11 +6,11 @@ install () add_dir "/sys" add_dir "/dev" - add_nod "/dev/null" 644 c 1 3 - add_nod "/dev/zero" 644 c 1 5 - add_nod "/dev/console" 644 c 5 1 + add_device "/dev/null" c 1 3 + add_device "/dev/zero" c 1 5 + add_device "/dev/console" c 5 1 - for f in /lib -name klibc-*.so; do + for f in $(find /lib -name klibc-*.so); do add_file $f done -- cgit v1.2.3-24-g4f1b