diff options
-rwxr-xr-x | install.sh | 18 | ||||
-rw-r--r-- | mkinitcpio-0.1-1.pkg.tar.gz | bin | 15418 -> 0 bytes | |||
-rw-r--r-- | mkinitcpio.tar.bz2 | bin | 30087 -> 0 bytes |
3 files changed, 18 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..a704f29 --- /dev/null +++ b/install.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +[ $# -ne 1 ] && echo "install.sh <root install path>" && exit 1 +mkdir -p ${1}/sbin +mkdir -p ${1}/lib/initcpio + +sed -e 's|CONFIG="mkinitcpio.conf"|CONFIG="/etc/mkinitcpio.conf"|g' \ + -e 's|FUNCTIONS="functions"|FUNCTIONS="/lib/initcpio/functions"|g' \ + -e 's|HOOKDIR="hooks"|HOOKDIR="/lib/initcpio/hooks"|g' \ + -e 's|INSTDIR="install"|INSTDIR="/lib/initcpio/install"|g' \ + < mkinitcpio > ${1}/sbin/mkinitcpio +chmod 755 ${1}/sbin/mkinitcpio + +install -D -m644 mkinitcpio.conf ${1}/etc/mkinitcpio.conf +install -D -m755 init ${1}/lib/initcpio/init +install -D -m644 functions ${1}/lib/initcpio/functions +cp -r hooks/ ${1}/lib/initcpio/ +cp -r install/ ${1}/lib/initcpio/ diff --git a/mkinitcpio-0.1-1.pkg.tar.gz b/mkinitcpio-0.1-1.pkg.tar.gz Binary files differdeleted file mode 100644 index 454a6d1..0000000 --- a/mkinitcpio-0.1-1.pkg.tar.gz +++ /dev/null diff --git a/mkinitcpio.tar.bz2 b/mkinitcpio.tar.bz2 Binary files differdeleted file mode 100644 index 2316768..0000000 --- a/mkinitcpio.tar.bz2 +++ /dev/null |