2015-04-10 00:53:46 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2020-01-05 18:36:44 +01:00
|
|
|
# prepare.sh
|
2015-04-10 00:53:46 +02:00
|
|
|
|
|
|
|
/bin/echo -e '\x1b[32mUpdating etc/conf...\x1b[0m'
|
2021-04-20 00:05:49 +02:00
|
|
|
echo XBPS_BUILD_ENVIRONMENT=void-packages-ci >> etc/conf
|
2017-02-07 03:48:14 +01:00
|
|
|
echo XBPS_ALLOW_RESTRICTED=yes >> etc/conf
|
2019-03-06 02:47:54 +01:00
|
|
|
|
|
|
|
/bin/echo -e '\x1b[32mEnabling ethereal chroot-style...\x1b[0m'
|
|
|
|
echo XBPS_CHROOT_CMD=ethereal >> etc/conf
|
|
|
|
echo XBPS_ALLOW_CHROOT_BREAKOUT=yes >> etc/conf
|
|
|
|
|
|
|
|
/bin/echo -e '\x1b[32mLinking / to /masterdir...\x1b[0m'
|
|
|
|
ln -s / masterdir
|