www.nico.schottelius.org/software/cinit/browse_source/cinit-0.3pre6/bin/cinit.install.service.mount-root

20 lines
617 B
Text
Raw Normal View History

#!/bin/sh
# Nico Schottelius
# cinit: install service: mount root r/w
# Date: 2005-08-07
#
. $(dirname $0)/cinit.read-conf
set -e
# mount root read/write
"$INSTALL_PROG" "$INSTALL_DIRECTORY" "${DESTDIR}/${CINIT_DIR}/mount/root"
ln -sf /bin/mount "${DESTDIR}/${CINIT_DIR}/mount/root/$C_ON"
echo -n > "${DESTDIR}/${CINIT_DIR}/mount/root/${C_ON}${C_PARAMS}"
echo -o >> "${DESTDIR}/${CINIT_DIR}/mount/root/${C_ON}${C_PARAMS}"
echo remount,rw >> "${DESTDIR}/${CINIT_DIR}/mount/root/${C_ON}${C_PARAMS}"
echo / >> "${DESTDIR}/${CINIT_DIR}/mount/root/${C_ON}${C_PARAMS}"
exit 0