From 69ac59622b5a8c2023f8667966f31a0dd1675adc Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Sat, 6 May 2006 02:20:43 +0000 Subject: Make real source tarball for mkinitcpio git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@72 880c04e9-e011-0410-abf7-b926e227c9cd --- install.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 install.sh (limited to 'install.sh') 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 " && 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/ -- cgit v1.2.3-24-g4f1b