23 lines
397 B
Bash
Executable File
23 lines
397 B
Bash
Executable File
#!/bin/sh
|
|
# vim: set sw=4 ts=4 sts=4 et :
|
|
|
|
. "${CONFIGDIR:=${PWD}}"/config
|
|
|
|
O=$1
|
|
|
|
emerge --root=/mnt/gentoo --config-root="${O}"/portage \
|
|
-kvnuUDj \
|
|
--rebuilt-binaries=y \
|
|
--onlydeps \
|
|
www-client/firefox
|
|
|
|
set -x
|
|
|
|
command -v clang
|
|
command -v "${target}"-clang
|
|
command -v "${target}"-clang-19
|
|
|
|
passwd -R /mnt/gentoo -d root
|
|
|
|
systemctl --root=/mnt/gentoo enable wpa_supplicant@wlan0
|