17 lines
377 B
Bash
Executable File
17 lines
377 B
Bash
Executable File
#!/bin/sh
|
|
# vim: set sw=4 ts=4 sts=4 et :
|
|
|
|
. "${CONFIGDIR:=${PWD}}"/config
|
|
|
|
O=$1
|
|
|
|
PORTAGE_BINHOST=http://distfiles.gentoo.org/releases/arm64/binpackages/23.0/arm64/ \
|
|
emerge --root=/mnt/gentoo --config-root="${O}"/portage \
|
|
-gKvnuj \
|
|
--rebuilt-binaries=y \
|
|
www-client/firefox
|
|
|
|
passwd -R /mnt/gentoo -d root
|
|
|
|
systemctl --root=/mnt/gentoo enable wpa_supplicant@wlan0
|