Lines Matching refs:rootfs

430 #       Stage 2 - Use Stage 1 to build a rootfs with python, rpm, and yum.
519 BOOTSTRAP_LIST="$(( $release + 1 ))/rootfs $(( $release - 1 ))/rootfs \
520 $(( $release + 2 ))/rootfs $(( $release - 2 ))/rootfs \
521 $(( $release + 3 ))/rootfs $(( $release - 3 ))/rootfs \
620 mount -o loop squashfs/LiveOS/rootfs.img stage0
625 Mount of LiveOS stage0 rootfs image failed! LiveOS download may be corrupt.
745 # We know have a working run time environment in rootfs...
1000 echo "Failed to download the rootfs, aborting."
1004 mv "$INSTALL_ROOT" "$cache/rootfs"
1014 echo -n "Copying rootfs to $rootfs_path ..."
1015 #cp -a $cache/rootfs-$basearch $rootfs_path || return 1
1018 rsync -Ha $cache/rootfs/ $rootfs_path/
1025 mount -o bind /dev ${cache}/rootfs/dev
1026 mount -t proc proc ${cache}/rootfs/proc
1028 cp /etc/resolv.conf ${cache}/rootfs/etc/
1029 chroot ${cache}/rootfs yum -y update
1030 umount ${cache}/rootfs/proc
1031 umount ${cache}/rootfs/dev
1044 echo "Checking cache download in $cache/rootfs ... "
1045 if [ ! -e "$cache/rootfs" ]; then
1061 echo "Copy $cache/rootfs to $rootfs_path ... "
1064 echo "Failed to copy rootfs"
1085 grep -q "^lxc.rootfs" $config_path/config 2>/dev/null || echo "
1086 lxc.rootfs = $rootfs_path
1192 --rootfs path for actual rootfs.
1204 options=$(getopt -o a:hp:n:cR: -l help,path:,rootfs:,name:,clean,release:,arch:,fqdn:,mask-tmp -- "$@")
1219 --rootfs) rootfs_path=$2; shift 2;;
1369 rootfs_path=$path/rootfs
1370 # check for 'lxc.rootfs' passed in through default config by lxc-create
1371 if grep -q '^lxc.rootfs' $path/config 2>/dev/null ; then
1372 rootfs_path=$(sed -e '/^lxc.rootfs\s*=/!d' -e 's/\s*#.*//' \
1373 -e 's/^lxc.rootfs\s*=\s*//' -e q $path/config)
1428 Container rootfs and config have been created.