2014-04-09 16:40:27 +02:00
|
|
|
# vim: set ts=4 sw=4 et:
|
2014-03-22 12:31:42 +01:00
|
|
|
|
|
|
|
chroot_init() {
|
2014-04-09 16:40:27 +02:00
|
|
|
XBPSSRC_CF=$XBPS_MASTERDIR/etc/xbps/xbps-src.conf
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-12-22 11:28:52 +01:00
|
|
|
mkdir -p $XBPS_MASTERDIR/etc/xbps
|
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
cat > $XBPSSRC_CF <<_EOF
|
2014-03-22 12:31:42 +01:00
|
|
|
# Generated configuration file by xbps-src, DO NOT EDIT!
|
2014-07-05 16:12:14 +02:00
|
|
|
_EOF
|
|
|
|
if [ -e "$XBPS_CONFIG_FILE" ]; then
|
|
|
|
grep -E '^XBPS_.*' $XBPS_CONFIG_FILE >> $XBPSSRC_CF
|
|
|
|
fi
|
|
|
|
cat >> $XBPSSRC_CF <<_EOF
|
2014-03-22 12:31:42 +01:00
|
|
|
XBPS_MASTERDIR=/
|
|
|
|
XBPS_CFLAGS="$XBPS_CFLAGS"
|
|
|
|
XBPS_CXXFLAGS="$XBPS_CXXFLAGS"
|
|
|
|
XBPS_CPPFLAGS="$XBPS_CPPFLAGS"
|
|
|
|
XBPS_LDFLAGS="$XBPS_LDFLAGS"
|
2014-06-30 12:03:56 +02:00
|
|
|
XBPS_HOSTDIR=/host
|
2014-03-22 12:31:42 +01:00
|
|
|
_EOF
|
2014-04-09 16:40:27 +02:00
|
|
|
|
|
|
|
echo "# End of configuration file." >> $XBPSSRC_CF
|
|
|
|
|
|
|
|
# Create custom script to start the chroot bash shell.
|
|
|
|
cat > $XBPS_MASTERDIR/bin/xbps-shell <<_EOF
|
2014-03-22 12:31:42 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
XBPS_SRC_VERSION="$XBPS_SRC_VERSION"
|
|
|
|
|
|
|
|
. /etc/xbps/xbps-src.conf
|
|
|
|
|
2014-10-11 11:15:02 +02:00
|
|
|
PATH=/void-packages:/usr/bin:/usr/sbin
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2015-09-03 07:36:50 +02:00
|
|
|
exec env -i SHELL=/bin/sh PATH="\$PATH" DISTCC_HOSTS="\$XBPS_DISTCC_HOSTS" DISTCC_DIR="/host/distcc" @@XARCH@@ \
|
2015-09-15 08:15:13 +02:00
|
|
|
CCACHE_DIR="/host/ccache" IN_CHROOT=1 LC_COLLATE=C LANG=en_US.UTF-8 TERM=linux HOME="/tmp" \
|
2014-04-09 16:40:27 +02:00
|
|
|
PS1="[\u@$XBPS_MASTERDIR \W]$ " /bin/bash +h
|
2014-03-22 12:31:42 +01:00
|
|
|
_EOF
|
2014-04-09 16:40:27 +02:00
|
|
|
if [ -n "$XBPS_ARCH" ]; then
|
|
|
|
sed -e "s,@@XARCH@@,XBPS_ARCH=${XBPS_ARCH},g" -i $XBPS_MASTERDIR/bin/xbps-shell
|
|
|
|
else
|
|
|
|
sed -e 's,@@XARCH@@,,g' -i $XBPS_MASTERDIR/bin/xbps-shell
|
|
|
|
fi
|
|
|
|
chmod 755 $XBPS_MASTERDIR/bin/xbps-shell
|
|
|
|
|
|
|
|
cp -f /etc/resolv.conf $XBPS_MASTERDIR/etc
|
|
|
|
|
|
|
|
# Update xbps alternative repository if set.
|
2014-12-22 11:15:44 +01:00
|
|
|
mkdir -p $XBPS_MASTERDIR/etc/xbps.d
|
2014-04-09 16:40:27 +02:00
|
|
|
if [ -n "$XBPS_ALT_REPOSITORY" ]; then
|
|
|
|
( \
|
|
|
|
echo "repository=/host/binpkgs/${XBPS_ALT_REPOSITORY}"; \
|
|
|
|
echo "repository=/host/binpkgs/${XBPS_ALT_REPOSITORY}/nonfree"; \
|
2014-12-30 08:23:42 +01:00
|
|
|
echo "repository=/host/binpkgs/${XBPS_ALT_REPOSITORY}/debug"; \
|
2014-12-22 11:15:44 +01:00
|
|
|
) > $XBPS_MASTERDIR/etc/xbps.d/00-repository-alternative.conf
|
2014-12-30 08:23:42 +01:00
|
|
|
if [ "$XBPS_MACHINE" = "x86_64" ]; then
|
|
|
|
( \
|
|
|
|
echo "repository=/host/binpkgs/${XBPS_ALT_REPOSITORY}/multilib"; \
|
|
|
|
echo "repository=/host/binpkgs/${XBPS_ALT_REPOSITORY}/multilib/nonfree"; \
|
|
|
|
) >> $XBPS_MASTERDIR/etc/xbps.d/00-repository-alternative.conf
|
|
|
|
fi
|
2014-04-09 16:40:27 +02:00
|
|
|
else
|
2014-12-22 11:15:44 +01:00
|
|
|
rm -f $XBPS_MASTERDIR/etc/xbps.d/00-repository-alternative.conf
|
2014-04-09 16:40:27 +02:00
|
|
|
fi
|
2014-03-22 12:31:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
chroot_prepare() {
|
2014-04-09 16:40:27 +02:00
|
|
|
local f=
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
if [ -f $XBPS_MASTERDIR/.xbps_chroot_init ]; then
|
|
|
|
return 0
|
|
|
|
elif [ ! -f $XBPS_MASTERDIR/bin/bash ]; then
|
|
|
|
msg_error "Bootstrap not installed in $XBPS_MASTERDIR, can't continue.\n"
|
|
|
|
fi
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
# Create some required files.
|
|
|
|
[ -f /etc/localtime ] && cp -f /etc/localtime $XBPS_MASTERDIR/etc
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
for f in dev sys proc host boot; do
|
|
|
|
[ ! -d $XBPS_MASTERDIR/$f ] && mkdir -p $XBPS_MASTERDIR/$f
|
|
|
|
done
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
# Copy /etc/passwd and /etc/group from base-files.
|
|
|
|
cp -f $XBPS_SRCPKGDIR/base-files/files/passwd $XBPS_MASTERDIR/etc
|
|
|
|
echo "$(whoami):x:$(id -u):$(id -g):$(whoami) user:/tmp:/bin/xbps-shell" \
|
|
|
|
>> $XBPS_MASTERDIR/etc/passwd
|
|
|
|
cp -f $XBPS_SRCPKGDIR/base-files/files/group $XBPS_MASTERDIR/etc
|
|
|
|
echo "$(whoami):x:$(id -g):" >> $XBPS_MASTERDIR/etc/group
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
# Copy /etc/hosts from base-files.
|
|
|
|
cp -f $XBPS_SRCPKGDIR/base-files/files/hosts $XBPS_MASTERDIR/etc
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-12-22 11:15:44 +01:00
|
|
|
mkdir -p $XBPS_MASTERDIR/etc/xbps.d
|
2014-12-22 11:24:58 +01:00
|
|
|
echo "syslog=false" >> $XBPS_MASTERDIR/etc/xbps.d/xbps.conf
|
|
|
|
echo "cachedir=/host/repocache" >> $XBPS_MASTERDIR/etc/xbps.d/xbps.conf
|
2015-02-27 23:00:55 +01:00
|
|
|
ln -sf /dev/null $XBPS_MASTERDIR/etc/xbps.d/00-repository-main.conf
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
# Prepare default locale: en_US.UTF-8.
|
2015-02-27 23:00:55 +01:00
|
|
|
if [ -z "$XBPS_TEMP_MASTERDIR" -a -s ${XBPS_MASTERDIR}/etc/default/libc-locales ]; then
|
2014-04-09 16:40:27 +02:00
|
|
|
echo 'en_US.UTF-8 UTF-8' >> ${XBPS_MASTERDIR}/etc/default/libc-locales
|
|
|
|
fi
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
touch -f $XBPS_MASTERDIR/.xbps_chroot_init
|
|
|
|
[ -n "$1" ] && echo $1 >> $XBPS_MASTERDIR/.xbps_chroot_init
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
return 0
|
2014-03-22 12:31:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
chroot_sync_repos() {
|
2014-04-09 16:40:27 +02:00
|
|
|
local f=
|
|
|
|
|
|
|
|
# Copy xbps configuration files to the masterdir.
|
2015-03-13 09:53:12 +01:00
|
|
|
install -Dm644 ${XBPS_DISTDIR}/etc/repos-local.conf \
|
2014-12-22 11:15:44 +01:00
|
|
|
${XBPS_MASTERDIR}/etc/xbps.d/10-repository-local.conf
|
2015-03-13 09:53:12 +01:00
|
|
|
install -Dm644 ${XBPS_DISTDIR}/etc/repos-remote.conf \
|
2014-12-22 11:15:44 +01:00
|
|
|
${XBPS_MASTERDIR}/etc/xbps.d/20-repository-remote.conf
|
2014-04-09 16:40:27 +02:00
|
|
|
|
2014-06-10 09:22:18 +02:00
|
|
|
if [ "$XBPS_MACHINE" = "x86_64" ]; then
|
2015-03-13 09:53:12 +01:00
|
|
|
install -Dm644 ${XBPS_DISTDIR}/etc/repos-local-x86_64.conf \
|
2014-12-22 11:15:44 +01:00
|
|
|
${XBPS_MASTERDIR}/etc/xbps.d/12-repository-local-x86_64.conf
|
2015-03-13 09:53:12 +01:00
|
|
|
install -Dm644 ${XBPS_DISTDIR}/etc/repos-remote-x86_64.conf \
|
2014-12-22 11:15:44 +01:00
|
|
|
${XBPS_MASTERDIR}/etc/xbps.d/22-repository-remote-x86_64.conf
|
2014-06-10 09:22:18 +02:00
|
|
|
fi
|
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
# if -N is set, comment out remote repositories from xbps.conf.
|
|
|
|
if [ -n "$XBPS_SKIP_REMOTEREPOS" ]; then
|
2014-12-22 11:15:44 +01:00
|
|
|
rm -f ${XBPS_MASTERDIR}/etc/xbps.d/20-repository-remote.conf
|
|
|
|
rm -f ${XBPS_MASTERDIR}/etc/xbps.d/22-repository-remote-x86_64.conf
|
2014-04-09 16:40:27 +02:00
|
|
|
fi
|
|
|
|
|
2014-06-06 16:29:50 +02:00
|
|
|
# Copy host repos to the cross root.
|
|
|
|
if [ -n "$XBPS_CROSS_BUILD" ]; then
|
2015-03-23 16:05:17 +01:00
|
|
|
rm -rf $XBPS_MASTERDIR/$XBPS_CROSS_BASE/etc/xbps.d
|
|
|
|
mkdir -p $XBPS_MASTERDIR/$XBPS_CROSS_BASE/etc/xbps.d
|
2014-12-22 11:15:44 +01:00
|
|
|
cp ${XBPS_MASTERDIR}/etc/xbps.d/*.conf \
|
2015-03-23 16:05:17 +01:00
|
|
|
$XBPS_MASTERDIR/$XBPS_CROSS_BASE/etc/xbps.d
|
|
|
|
rm -f $XBPS_MASTERDIR/$XBPS_CROSS_BASE/etc/xbps.d/*-x86_64.conf
|
2014-06-10 09:36:58 +02:00
|
|
|
fi
|
|
|
|
|
2015-03-09 09:52:35 +01:00
|
|
|
if [ -z "$XBPS_SKIP_REMOTEREPOS" ]; then
|
|
|
|
# Make sure to sync index for remote repositories.
|
2015-07-12 08:24:04 +02:00
|
|
|
xbps-install -r $XBPS_MASTERDIR -S
|
2015-03-05 21:44:22 +01:00
|
|
|
fi
|
|
|
|
|
2014-06-10 09:36:58 +02:00
|
|
|
if [ -n "$XBPS_CROSS_BUILD" ]; then
|
|
|
|
# Copy host keys to the target rootdir.
|
2015-03-23 16:05:17 +01:00
|
|
|
mkdir -p $XBPS_MASTERDIR/$XBPS_CROSS_BASE/var/db/xbps/keys
|
2014-06-10 09:36:58 +02:00
|
|
|
cp -a $XBPS_MASTERDIR/var/db/xbps/keys/*.plist \
|
2015-03-23 16:05:17 +01:00
|
|
|
$XBPS_MASTERDIR/$XBPS_CROSS_BASE/var/db/xbps/keys
|
2015-03-12 18:49:21 +01:00
|
|
|
# Make sure to sync index for remote repositories.
|
2015-03-23 16:05:17 +01:00
|
|
|
if [ -z "$XBPS_SKIP_REMOTEREPOS" ]; then
|
2015-03-12 18:49:21 +01:00
|
|
|
env XBPS_TARGET_ARCH=$XBPS_TARGET_ARCH \
|
2015-07-12 08:24:04 +02:00
|
|
|
xbps-install -r $XBPS_MASTERDIR/$XBPS_CROSS_BASE -S
|
2015-03-12 18:49:21 +01:00
|
|
|
fi
|
2014-06-06 16:29:50 +02:00
|
|
|
fi
|
|
|
|
|
2014-04-09 16:40:27 +02:00
|
|
|
return 0
|
2014-03-22 12:31:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
chroot_handler() {
|
2015-04-09 18:57:41 +02:00
|
|
|
local action="$1" pkg="$2" rv=0 arg= _envargs=
|
2014-04-09 16:40:27 +02:00
|
|
|
|
2014-11-10 11:57:46 +01:00
|
|
|
if [ -n "$IN_CHROOT" -o -z "$CHROOT_READY" ]; then
|
2015-01-04 12:14:14 +01:00
|
|
|
return 0
|
2014-11-08 11:07:40 +01:00
|
|
|
fi
|
2014-10-11 11:02:57 +02:00
|
|
|
if [ ! -d $XBPS_MASTERDIR/void-packages ]; then
|
|
|
|
mkdir -p $XBPS_MASTERDIR/void-packages
|
2014-04-09 16:40:27 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
[ -z "$action" -a -z "$pkg" ] && return 1
|
|
|
|
|
|
|
|
case "$action" in
|
|
|
|
fetch|extract|build|configure|install|install-destdir|pkg|build-pkg|bootstrap-update|chroot)
|
|
|
|
chroot_prepare || return $?
|
|
|
|
chroot_init || return $?
|
2015-03-09 09:52:35 +01:00
|
|
|
chroot_sync_repos || return $?
|
2014-04-09 16:40:27 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ "$action" = "chroot" ]; then
|
2015-04-09 18:57:41 +02:00
|
|
|
$XBPS_COMMONDIR/chroot-style/${XBPS_CHROOT_CMD:=uunshare}.sh \
|
|
|
|
$XBPS_MASTERDIR $XBPS_DISTDIR "$XBPS_HOSTDIR" "$XBPS_CHROOT_CMD_ARGS" /bin/xbps-shell
|
2015-03-12 18:56:14 +01:00
|
|
|
rv=$?
|
2014-04-09 16:40:27 +02:00
|
|
|
else
|
2014-07-01 11:04:34 +02:00
|
|
|
[ -n "$XBPS_CROSS_BUILD" ] && arg="$arg -a $XBPS_CROSS_BUILD"
|
|
|
|
[ -n "$XBPS_KEEP_ALL" ] && arg="$arg -C"
|
|
|
|
[ -n "$NOCOLORS" ] && arg="$arg -L"
|
|
|
|
[ -n "$XBPS_BUILD_FORCEMODE" ] && arg="$arg -f"
|
|
|
|
[ -n "$XBPS_MAKEJOBS" ] && arg="$arg -j$XBPS_MAKEJOBS"
|
|
|
|
[ -n "$XBPS_DEBUG_PKGS" ] && arg="$arg -g"
|
|
|
|
[ -n "$XBPS_SKIP_DEPS" ] && arg="$arg -I"
|
|
|
|
[ -n "$XBPS_ALT_REPOSITORY" ] && arg="$arg -r $XBPS_ALT_REPOSITORY"
|
|
|
|
[ -n "$XBPS_USE_GIT_REVS" ] && arg="$arg -G"
|
2014-07-12 15:56:40 +02:00
|
|
|
[ -n "$XBPS_PKG_OPTIONS" ] && arg="$arg -o $XBPS_PKG_OPTIONS"
|
2015-03-01 16:45:16 +01:00
|
|
|
[ -n "$XBPS_TEMP_MASTERDIR" ] && arg="$arg -t -C"
|
|
|
|
[ -n "$XBPS_BINPKG_EXISTS" ] && arg="$arg -E"
|
2014-07-01 11:04:34 +02:00
|
|
|
|
|
|
|
action="$arg $action"
|
2015-09-03 07:36:50 +02:00
|
|
|
env -i PATH="/usr/bin:/usr/sbin:$PATH" SHELL=/bin/sh \
|
2015-09-15 08:15:13 +02:00
|
|
|
HOME=/tmp IN_CHROOT=1 LC_COLLATE=C LANG=en_US.UTF-8 \
|
2015-04-09 18:57:41 +02:00
|
|
|
$XBPS_COMMONDIR/chroot-style/${XBPS_CHROOT_CMD:=uunshare}.sh \
|
|
|
|
$XBPS_MASTERDIR $XBPS_DISTDIR "$XBPS_HOSTDIR" "$XBPS_CHROOT_CMD_ARGS" \
|
2015-06-03 20:12:49 +02:00
|
|
|
/void-packages/xbps-src $action $pkg
|
2015-03-12 18:56:14 +01:00
|
|
|
rv=$?
|
2014-04-09 16:40:27 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
return $rv
|
2014-03-22 12:31:42 +01:00
|
|
|
}
|