summaryrefslogtreecommitdiff
path: root/configs/releng/build.sh
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-07-02 09:37:46 +0200
committerErich Eckner <git@eckner.net>2018-07-02 09:37:46 +0200
commita0567e82282840ab19f528e4d62b2801f772aeaf (patch)
treea93367405cd21eacd03be0e976ed626e666e2ea6 /configs/releng/build.sh
parent40fe26078021b19391a41ac99537bc794e12d1fc (diff)
parenta00ba0f49921fb19ac1fb77b50d0ed74e04ac062 (diff)
downloadarchiso32-a0567e82282840ab19f528e4d62b2801f772aeaf.tar.xz
Merge remote-tracking branch 'upstream/master' into dual-bootdual-v36
Diffstat (limited to 'configs/releng/build.sh')
-rwxr-xr-xconfigs/releng/build.sh14
1 files changed, 12 insertions, 2 deletions
diff --git a/configs/releng/build.sh b/configs/releng/build.sh
index 8c11e2d..aeb323a 100755
--- a/configs/releng/build.sh
+++ b/configs/releng/build.sh
@@ -4,6 +4,8 @@ set -e -u
iso_name=archlinux
iso_label="ARCH_$(date +%Y%m)"
+iso_publisher="Arch Linux <http://www.archlinux.org>"
+iso_application="Arch Linux Live/Rescue CD"
iso_version=$(date +%Y.%m.%d)
install_dir=arch
work_dir=work
@@ -27,6 +29,10 @@ _usage ()
echo " Default: ${iso_version}"
echo " -L <iso_label> Set an iso label (disk label)"
echo " Default: ${iso_label}"
+ echo " -P <publisher> Set a publisher for the disk"
+ echo " Default: '${iso_publisher}'"
+ echo " -A <application> Set an application name for the disk"
+ echo " Default: '${iso_application}'"
echo " -D <install_dir> Set an install_dir (directory inside iso)"
echo " Default: ${install_dir}"
echo " -w <work_dir> Set the working directory"
@@ -101,6 +107,8 @@ make_setup_mkinitcpio() {
make_customize_airootfs() {
cp -af ${script_path}/airootfs ${work_dir}/${arch}
+ cp ${script_path}/pacman.conf ${work_dir}/x86_64/airootfs/etc
+
if [ "${arch}" = 'i686' ]; then
curl -o ${work_dir}/${arch}/airootfs/etc/pacman.d/mirrorlist 'https://raw.githubusercontent.com/archlinux32/packages/master/core/pacman-mirrorlist/mirrorlist'
else
@@ -223,7 +231,7 @@ make_prepare() {
# Build ISO
make_iso() {
- mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -o "${out_dir}" iso "${iso_name}-${iso_version}-dual.iso"
+ mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -P "${iso_publisher}" -A "${iso_application}" -o "${out_dir}" iso "${iso_name}-${iso_version}-dual.iso"
}
if [[ ${EUID} -ne 0 ]]; then
@@ -236,11 +244,13 @@ if [[ ${arch} != x86_64 ]]; then
_usage 1
fi
-while getopts 'N:V:L:D:w:o:g:vh' arg; do
+while getopts 'N:V:L:P:A:D:w:o:g:vh' arg; do
case "${arg}" in
N) iso_name="${OPTARG}" ;;
V) iso_version="${OPTARG}" ;;
L) iso_label="${OPTARG}" ;;
+ P) iso_publisher="${OPTARG}" ;;
+ A) iso_application="${OPTARG}" ;;
D) install_dir="${OPTARG}" ;;
w) work_dir="${OPTARG}" ;;
o) out_dir="${OPTARG}" ;;