diff options
author | DTux <contact@librepc.com> | 2020-01-27 08:27:17 +0000 |
---|---|---|
committer | Gogs <gogs@fake.local> | 2020-01-27 08:27:17 +0000 |
commit | 539026f92b38cbe9dc4ffbd2e4c935803ba5bbd4 (patch) | |
tree | 09123ff64a6c006a3bb49fc9866fff760b0f8fdf | |
parent | ba52a77532de2af6e29ab228f58d82fc33c262d1 (diff) | |
parent | 5b42a8d15b058f95e709b3d2c5564bfcfeed81b7 (diff) | |
download | mageia4arm-539026f92b38cbe9dc4ffbd2e4c935803ba5bbd4.tar mageia4arm-539026f92b38cbe9dc4ffbd2e4c935803ba5bbd4.tar.gz mageia4arm-539026f92b38cbe9dc4ffbd2e4c935803ba5bbd4.tar.bz2 mageia4arm-539026f92b38cbe9dc4ffbd2e4c935803ba5bbd4.tar.xz mageia4arm-539026f92b38cbe9dc4ffbd2e4c935803ba5bbd4.zip |
Merge branch 'fix-qemu-user-setup' of ngompa/mageia4arm into master
-rwxr-xr-x | create_arm_image.sh | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/create_arm_image.sh b/create_arm_image.sh index 34549a1..b07e3ea 100755 --- a/create_arm_image.sh +++ b/create_arm_image.sh @@ -111,6 +111,13 @@ function createchroot() error "line ${LINENO} can't start qemu-user-static : exiting" exit ${ERR_1} fi + else + title "Restarting systemd-binfmt.service" + /bin/systemctl restart systemd-binfmt.service + if [ ${?} -ne 0 ]; then + error "line ${LINENO} can't start qemu-user-static : exiting" + exit ${ERR_1} + fi fi return 0 } @@ -227,6 +234,19 @@ function installbasesystem() info "Build path exists" fi + # Workaround mga#26044. + info "Preparing root filesystem tree" + mkdir -p "${BUILD_PATH}/usr/bin" + mkdir -p "${BUILD_PATH}/usr/sbin" + mkdir -p "${BUILD_PATH}/usr/lib" + ln -sr "${BUILD_PATH}/usr/bin" "${BUILD_PATH}/bin" + ln -sr "${BUILD_PATH}/usr/sbin" "${BUILD_PATH}/sbin" + ln -sr "${BUILD_PATH}/usr/lib" "${BUILD_PATH}/lib" + if [ "${ARM_VERSION}" = "aarch64" ]; then + mkdir -p "${BUILD_PATH}/usr/lib64" + ln -sr "${BUILD_PATH}/usr/lib64" "${BUILD_PATH}/lib64" + fi + title "installing basesystem" /usr/bin/dnf --installroot="${BUILD_PATH}" ${DNF_MIRROROPTS} --assumeyes install shadow-utils basesystem-minimal if [ ${?} -ne 0 ]; then @@ -263,20 +283,6 @@ function preparechroot() { title "Preparing chrooting in ${BUILD_PATH}" - #Copying qemu - - /bin/cp /bin/qemu-arm-static "${BUILD_PATH}/usr/bin/" - if [ ${?} -ne 0 ]; then - error "line ${LINENO} can't copy /bin/qemu-user-static to ${BUILD_PATH}/usr/bin/ : exiting" - exit ${ERR_1} - fi - /bin/cp /usr/lib/binfmt.d/qemu-arm-static.conf "${BUILD_PATH}/usr/lib/binfmt.d" - if [ ${?} -ne 0 ]; then - error "line ${LINENO} can't copy /usr/lib/binfmt.d/qemu-arm-static.conf to ${BUILD_PATH}/usr/lib/binfmt.d : exiting" - exit ${ERR_1} - fi - - info "making /etc/hostname" echo "${HOSTNAME}" > "${BUILD_PATH}/etc/hostname" |