Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/configs/releng/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'configs/releng/build.sh')
-rwxr-xr-xconfigs/releng/build.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/configs/releng/build.sh b/configs/releng/build.sh
index 310204b..98f48b0 100755
--- a/configs/releng/build.sh
+++ b/configs/releng/build.sh
@@ -130,6 +130,15 @@ make_setup_mkinitcpio() {
# Customize installation (airootfs)
make_customize_airootfs() {
+ if [[ -e "${script_path}/airootfs/etc/passwd" ]]; then
+ while IFS=':' read -a passwd -r; do
+ [[ "${passwd[5]}" == '/' ]] && continue
+ cp -RdT --preserve=mode,timestamps,links -- "${work_dir}/x86_64/airootfs/etc/skel" "${work_dir}/x86_64/airootfs${passwd[5]}"
+ chown -hR -- "${passwd[2]}:${passwd[3]}" "${work_dir}/x86_64/airootfs${passwd[5]}"
+
+ done < "${script_path}/airootfs/etc/passwd"
+ fi
+
if [[ -e "${work_dir}/x86_64/airootfs/root/customize_airootfs.sh" ]]; then
if [ -n "${verbose}" ]; then
mkarchiso -v -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" \
@@ -305,8 +314,8 @@ mkdir -p "${work_dir}"
run_once make_pacman_conf
run_once make_custom_airootfs
run_once make_packages
-run_once make_setup_mkinitcpio
run_once make_customize_airootfs
+run_once make_setup_mkinitcpio
run_once make_boot
run_once make_boot_extra
run_once make_syslinux