423ba10303
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
19 lines
617 B
Bash
19 lines
617 B
Bash
#!/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
|