pacstrap: use --sysroot instead of --root

Does not seem to work, there's no internet connection in the chroot
This commit is contained in:
Eli Schwartz 2018-05-29 12:16:48 -04:00
parent 8f7fc3f5d7
commit db0b093076
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6

View File

@ -75,7 +75,6 @@ shift $(( OPTIND - 1 ))
(( $# )) || die "No root directory specified" (( $# )) || die "No root directory specified"
newroot=$1; shift newroot=$1; shift
pacman_args=("${@:-base}") pacman_args=("${@:-base}")
pacman_args+=(--cachedir="$newroot/var/cache/pacman/pkg")
if (( ! interactive )); then if (( ! interactive )); then
pacman_args+=(--noconfirm) pacman_args+=(--noconfirm)
@ -85,7 +84,7 @@ fi
# create obligatory directories # create obligatory directories
msg 'Creating install root at %s' "$newroot" msg 'Creating install root at %s' "$newroot"
mkdir -m 0755 -p "$newroot"/var/{cache/pacman/pkg,lib/pacman,log} "$newroot"/{dev,run,etc} mkdir -m 0755 -p "$newroot"/var/{cache/pacman/pkg,lib/pacman,log} "$newroot"/{dev,run,etc/pacman.d}
mkdir -m 1777 -p "$newroot"/tmp mkdir -m 1777 -p "$newroot"/tmp
mkdir -m 0555 -p "$newroot"/{sys,proc} mkdir -m 0555 -p "$newroot"/{sys,proc}
@ -98,11 +97,6 @@ else
pacman-conf > "$newroot/tmp/pacman.conf" pacman-conf > "$newroot/tmp/pacman.conf"
fi fi
msg 'Installing packages to %s' "$newroot"
if ! pacman -r "$newroot" --config "$newroot"/tmp/pacman.conf -Sy "${pacman_args[@]}"; then
die 'Failed to install packages to new root'
fi
if (( copykeyring )); then if (( copykeyring )); then
# if there's a keyring on the host, copy it into the new root, unless it exists already # if there's a keyring on the host, copy it into the new root, unless it exists already
if [[ -d /etc/pacman.d/gnupg && ! -d $newroot/etc/pacman.d/gnupg ]]; then if [[ -d /etc/pacman.d/gnupg && ! -d $newroot/etc/pacman.d/gnupg ]]; then
@ -115,4 +109,9 @@ if (( copymirrorlist )); then
cp -a /etc/pacman.d/mirrorlist "$newroot/etc/pacman.d/" cp -a /etc/pacman.d/mirrorlist "$newroot/etc/pacman.d/"
fi fi
msg 'Installing packages to %s' "$newroot"
if ! pacman --sysroot "$newroot" --config /tmp/pacman.conf -Sy "${pacman_args[@]}"; then
die 'Failed to install packages to new root'
fi
# vim: et ts=2 sw=2 ft=sh: # vim: et ts=2 sw=2 ft=sh: