source: bootscripts/contrib/livecd/mountsqfs @ 163a6701

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 163a6701 was 163a6701, checked in by Jim Gifford <clfs@…>, 18 years ago

r720@server (orig r718): jim | 2005-11-18 08:06:26 -0800
Added bootscripts to cross-lfs svn

  • Property mode set to 100755
File size: 595 bytes
Line 
1#!/bin/sh
2##################################################################
3# Begin $rc_base/init.d/mountsqfs
4#
5# Description : Mounts squashed usr dir on livecd
6#
7# Authors     : Jeremy Huntwork, jhuntwork@linuxfromscratch.org
8#
9# Date        : 2005-01-26
10#
11##################################################################
12
13. /etc/sysconfig/rc
14. $rc_functions
15
16case "$1" in
17        start)
18                cd /
19                boot_mesg "Mounting squashed usr directory..."
20                mkdir /usr
21                mount -t squashfs /.cdrom/usr.sqfs /usr -o loop
22                echo_ok
23                ;;
24
25        *)
26                echo "Usage: $0 {start}"
27                exit 1
28                ;;
29esac
30
31# End $rc_base/init.d/
Note: See TracBrowser for help on using the repository browser.