diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-02-11 19:31:31 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-02-11 19:31:31 +0100 |
commit | 0d755f3b5f96e9cf229c523cebcfb8c2379c1fd2 (patch) | |
tree | 31768b40897ce1d9ac3c2b22c1d8fcc89b6ecd23 /install/base | |
parent | 1a91e4fa8e2d9823082843e98021c3345f82f072 (diff) | |
parent | d67250f427937cb4b6f75b27d47d35302bd9890b (diff) | |
download | mkinitcpio-0d755f3b5f96e9cf229c523cebcfb8c2379c1fd2.tar.gz mkinitcpio-0d755f3b5f96e9cf229c523cebcfb8c2379c1fd2.tar.xz |
Merge branch 'kill-klibc'
Conflicts:
Makefile
Diffstat (limited to 'install/base')
-rw-r--r-- | install/base | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/install/base b/install/base index 0fdc120..ff1be88 100644 --- a/install/base +++ b/install/base @@ -5,24 +5,22 @@ install () add_dir "/proc" add_dir "/sys" add_dir "/dev" + add_dir "/bin" + add_dir "/sbin" + add_dir "/lib" + add_dir "/usr" + add_dir "/usr/bin" + add_dir "/usr/lib" + add_dir "/usr/sbin" add_device "/dev/null" c 1 3 add_device "/dev/zero" c 1 5 add_device "/dev/console" c 5 1 add_device "/dev/mem" c 1 1 - for f in $(find /lib -name klibc-*.so); do - add_file ${f} - done - - for f in /usr/lib/klibc/bin/*; do - add_file ${f} /bin/$(basename ${f}) - done - for f in /usr/lib/klibc/sbin/*; do - add_file ${f} /sbin/$(basename ${f}) - done - # add symlink for compatibility - add_symlink2 /bin/modprobe /sbin/modprobe + add_binary /lib/initcpio/busybox /bin/busybox + add_binary /sbin/modprobe + add_binary /sbin/blkid add_file "/lib/initcpio/init_functions" "/init_functions" add_file "/lib/initcpio/init" "/init" @@ -39,7 +37,7 @@ help () { cat <<HELPEOF This hook sets up all initial directories and installs base - klibc utilities and libraries. DO NOT remove this one unless - you know what you're doing. + utilities. DO NOT remove this one unless you know what you're + doing. HELPEOF } |