summaryrefslogtreecommitdiff
path: root/src/core/procedures
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-02-14 18:43:11 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2009-02-14 18:43:11 +0100
commitccc552ef115d3d7fcd5f92121ba9838e9b199361 (patch)
tree4c19a593970c17766518a263e67d6f5e48e9f2b7 /src/core/procedures
parent9e895707d72b600ab722337c7b26ce226675c11c (diff)
port of FS#12944 - Pacman mirrorlist installer edits
Diffstat (limited to 'src/core/procedures')
-rw-r--r--src/core/procedures/base4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/procedures/base b/src/core/procedures/base
index 6aa7767..c22a01c 100644
--- a/src/core/procedures/base
+++ b/src/core/procedures/base
@@ -8,7 +8,7 @@ var_RUNTIME_PACKAGES=
var_PKG_FILE=$RUNTIME_DIR/package-list # not used by default in base/interactive. can be used by custom procedures or profiles for the automatic procedure
var_MIRRORLIST="/etc/pacman.d/mirrorlist"
var_UI_TYPE="cli" # set to cli or dia for dialog
-var_ARCH=`uname -m` #i686 or x86_64
+var_ARCH=`uname -m` #i686 or x86_64. NOTE: this assumes you want to install the same arch as the installation environment you're using. maybe we could decouple those someday..
[ -z "$var_ARCH" ] && die_error "Could not determine your architecture"
###### Phases ( can be overridden by more specific procedures) ######
@@ -67,7 +67,7 @@ worker_select_source ()
{
var_PKG_SOURCE_TYPE='cd'
var_FILE_URL="file:///src/core/pkg"
- var_SYNC_URL=
+ var_SYNC_URL= # optional, points to a repository string something like ftp://ftp.belnet.be/mirror/archlinux.org/$repo/os/i686 (eg the same format as what you find in /etc/pacman.conf)
# if you override to use ftp (or ask user and he chooses ftp) don't forget to configure the network and to select_mirrors
}