[configs/releng] Do not build i686

Only avoid build i686. The syslinux config files for i686 are still
present. This implies that a i686 entry will be present but not working.
In another patch, this can be removed if desired.

Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@gmail.com>
This commit is contained in:
Gerardo Exequiel Pozzi 2017-01-23 14:05:25 -03:00
parent bee129512d
commit 01b54d2406

View File

@ -249,19 +249,19 @@ mkdir -p ${work_dir}
run_once make_pacman_conf
# Do all stuff for each airootfs
for arch in i686 x86_64; do
for arch in x86_64; do
run_once make_basefs
run_once make_packages
done
run_once make_packages_efi
for arch in i686 x86_64; do
for arch in x86_64; do
run_once make_setup_mkinitcpio
run_once make_customize_airootfs
done
for arch in i686 x86_64; do
for arch in x86_64; do
run_once make_boot
done
@ -272,7 +272,7 @@ run_once make_isolinux
run_once make_efi
run_once make_efiboot
for arch in i686 x86_64; do
for arch in x86_64; do
run_once make_prepare
done