diff options
author | P. J. McDermott <pjm@nac.net> | 2013-06-03 16:21:04 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-06-03 16:21:04 (EDT) |
commit | 121eabbcd1933b206c03c7781d7d6ffea7a2f068 (patch) | |
tree | ece972c99ecc192f51747006874814c9423be785 | |
parent | 463ca398e97f0aca9aaf3568dcc81f9c5ceddf42 (diff) |
bootstrap-stage1-install.sh: Configure opkg.
-rwxr-xr-x | bootstrap-stage1-install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bootstrap-stage1-install.sh b/bootstrap-stage1-install.sh index c79fbb9..f4d242f 100755 --- a/bootstrap-stage1-install.sh +++ b/bootstrap-stage1-install.sh @@ -98,6 +98,9 @@ install_archplat_sysconf() mkdir -p etc printf '%s\n' "${ARCH}" >etc/proteanos_arch printf '%s\n' "${PLAT}" >etc/proteanos_plat + mkdir -p etc/opkg + printf 'arch all 1\narch %s 1\narch src 1\n' "${ARCH}" \ + >etc/opkg/opkg.conf cd .. } |