Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Segment fault with Ubuntu 24.04 20250120.5.0 #11471

Closed
3 of 16 tasks
RadxaYuntian opened this issue Jan 26, 2025 · 47 comments
Closed
3 of 16 tasks

Segment fault with Ubuntu 24.04 20250120.5.0 #11471

RadxaYuntian opened this issue Jan 26, 2025 · 47 comments

Comments

@RadxaYuntian
Copy link

RadxaYuntian commented Jan 26, 2025

Current workaround

GitHub has refused to acknowledge this problem. The current workaround can be found here.

Description

We have a scheduled job running every Sunday, which failed today, with no code change in last 2 weeks.

After checking the build log, it always failed at a dkms package installation. Once the workflow file is changed to print the dkms log, the error is always gcc segment fault.

Changing running environment to ubuntu22-04 fixed the segment fault. Action still failed but that's because the change we made to investigate this issue.

What may be unusual for us is that we are using binfmt to run aarch64 gcc in a devcontainer, because the final output is an aarch64 system image. So this is not some normal gcc failing.

Platforms affected

  • Azure DevOps
  • GitHub Actions - Standard Runners
  • GitHub Actions - Larger Runners

Runner images affected

  • Ubuntu 20.04
  • Ubuntu 22.04
  • Ubuntu 24.04
  • macOS 12
  • macOS 13
  • macOS 13 Arm64
  • macOS 14
  • macOS 14 Arm64
  • macOS 15
  • macOS 15 Arm64
  • Windows Server 2019
  • Windows Server 2022
  • Windows Server 2025

Image version and build link

20250120.5.0

Is it regression?

20250105.1.0: https://github.com/RadxaOS-SDK/rsdk/actions/runs/12848906725

Expected behavior

DKMS install successfully without gcc segfault.

Actual behavior

gcc segfault:

   2025-01-26 07:47:36,252 bdebstrap ERROR: mmdebstrap failed with exit code 25. See above for details.
  
  /workspaces/rsdk
  
  DKMS make.log for radxa-overlays-0.1.20 for kernel 6.1.68-2-stable (aarch64)
  Sun Jan 26 07:47:16 UTC 2025
  make: Entering directory '/usr/src/linux-headers-6.1.68-2-stable'
  Segmentation fault (core dumped)
  warning: the compiler differs from the one used to build the kernel
    The kernel was built by: aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110
    You are using:           gcc (Debian 12.2.0-14) 12.2.0
    CC [M]  /var/lib/dkms/radxa-overlays/0.1.20/build/radxa-overlays.o
    DTC     /var/lib/dkms/radxa-overlays/0.1.20/build/arch/arm64/boot/dts/amlogic/overlays/meson-g12-disable-gpu.dtbo
    DTC     /var/lib/dkms/radxa-overlays/0.1.20/build/arch/arm64/boot/dts/amlogic/overlays/meson-g12-disable-hdmi.dtbo
    DTC     /var/lib/dkms/radxa-overlays/0.1.20/build/arch/arm64/boot/dts/rockchip/overlays/radxa-s0-ext-antenna.dtbo
  gcc: internal compiler error: Segmentation fault signal terminated program cc1
  Please submit a full bug report, with preprocessed source (by using -freport-bug).
  See <file:///usr/share/doc/gcc-12/README.Bugs> for instructions.
  make[2]: *** [scripts/Makefile.lib:409: /var/lib/dkms/radxa-overlays/0.1.20/build/arch/arm64/boot/dts/rockchip/overlays/radxa-s0-ext-antenna.dtbo] Error 4
  make[1]: *** [scripts/Makefile.build:500: /var/lib/dkms/radxa-overlays/0.1.20/build/arch/arm64/boot/dts/rockchip/overlays] Error 2
  make[1]: *** Waiting for unfinished jobs....

Repro steps

  1. Clone https://github.com/RadxaOS-SDK/rsdk
  2. Cherry pick RadxaYuntian/rsdk@090908a to view dkms log
  3. Trigger workflow_dispatch for build.yaml
@RadxaYuntian
Copy link
Author

RadxaYuntian commented Jan 26, 2025

The gcc version Debian 12.2.0-14 was released on 2023/01/08, so the last successful run (2025/01/19) and today's failed run are both using the same version in the devcontainer.

@deviantintegral
Copy link

I can confirm this as well at https://github.com/pbkhrv/rtl_433-hass-addons/actions/runs/12972957498/job/36181006667. That job is compiling aarch64 in Docker under QEMU (I know, proper cross compiling would be better, but this is what the official Home Assistant builder action does so 🤷 ).

Is there a way to specify the runner image version to a previous 24.04 release to confirm the regression?

@woblerr
Copy link

woblerr commented Jan 26, 2025

The same problem for buildx for linux/arm64 via QEMU: https://github.com/woblerr/docker-pgbackrest/actions/runs/12965488407/job/36165276019#step:7:2658

Rollback to the ubuntu-22.04 runner solved the problem.

@MyreMylar
Copy link

Chiming in to say that we are seeing segfaults on our test runners for pygame-ce in the ppc64le architecture build since getting version 20250120.5.0. and, perhaps related, it also reporting that it can no longer detect the GNU compiler type for our S390x architecture build.

As @deviantintegral says it would be nice to have a way to roll back to a previous runner image to isolate the problem.

@RaviAkshintala
Copy link
Contributor

Hi @RadxaYuntian Thank you for bringing this issue to our attention. We will look into this issue and will update you after investigating.

stevenhorsman added a commit to stevenhorsman/cloud-api-adaptor that referenced this issue Jan 27, 2025
Due to an
[issue](actions/runner-images#11471)
with Ubuntu 24.04 20250120.5.0 runner image
we have been seeing failures in our multi-arch images for
the last few days which is blocking the release. I assume that
the issue is something related to qemu, so downgrade to 22.04
until this issue is resolved.

Signed-off-by: stevenhorsman <[email protected]>
@BrianPugh
Copy link

I'm also having very similar issues in tamp when using cibuildwheel to build python wheels for ppc64le and aarch64 targets.

@rtobar
Copy link

rtobar commented Jan 28, 2025

Same issue here with gcc segfault, but in my case I saw it both with ubuntu-latest and ubuntu-20.04. Updating/downgrading to ubuntu-22.04 solved it as mentioned by other people.

stevenhorsman added a commit to confidential-containers/cloud-api-adaptor that referenced this issue Jan 28, 2025
Due to an
[issue](actions/runner-images#11471)
with Ubuntu 24.04 20250120.5.0 runner image
we have been seeing failures in our multi-arch images for
the last few days which is blocking the release. I assume that
the issue is something related to qemu, so downgrade to 22.04
until this issue is resolved.

Signed-off-by: stevenhorsman <[email protected]>
charlesomer referenced this issue in mikebrady/shairport-sync Jan 28, 2025
@amotl
Copy link

amotl commented Feb 19, 2025

Dear @ashwin153,

thank you so much for your suggestion. We needed to apply that fix to fix the OCI build on ARM.

With kind regards,
Andreas.

NB: Shall this ticket be re-opened? Do participants of this conversation have any other suggestions or news on this topic?

@WyriHaximus
Copy link

NB: Shall this ticket be re-opened? Do participants of this conversation have any other suggestions or news on this topic?

IMHO yes until it's all fully working again without having to pin versions, or bump to an older Ubuntu version etc.

Brooooooklyn added a commit to napi-rs/napi-rs that referenced this issue Feb 20, 2025
Brooooooklyn added a commit to napi-rs/napi-rs that referenced this issue Feb 20, 2025
Xynnn007 added a commit to Xynnn007/kbs that referenced this issue Feb 21, 2025
Due to actions/runner-images#11471 we see
similar problems when using ubuntu24.04 to do cross build for arm64
images.

A workaround is to downgrade to ubuntu22.04.

Fixes confidential-containers#715

Signed-off-by: Xynnn007 <[email protected]>
Xynnn007 added a commit to Xynnn007/kbs that referenced this issue Feb 21, 2025
Due to actions/runner-images#11471 we see
similar problems when using ubuntu24.04 to do cross build for arm64
images.

A workaround is to downgrade to ubuntu22.04.

Fixes confidential-containers#715

Signed-off-by: Xynnn007 <[email protected]>
Xynnn007 added a commit to Xynnn007/kbs that referenced this issue Feb 21, 2025
Due to actions/runner-images#11471 we see
similar problems when using ubuntu24.04 to do cross build for arm64
images.

A workaround is to downgrade to ubuntu22.04 and use Qemu v7.

Fixes confidential-containers#715

Signed-off-by: Xynnn007 <[email protected]>
Xynnn007 added a commit to Xynnn007/kbs that referenced this issue Feb 21, 2025
Due to actions/runner-images#11471 we see
similar problems when using ubuntu24.04 to do cross build for arm64
images.

A workaround is to downgrade to ubuntu22.04 and use Qemu v8.

Fixes confidential-containers#715

Signed-off-by: Xynnn007 <[email protected]>
Xynnn007 added a commit to Xynnn007/kbs that referenced this issue Feb 21, 2025
Due to actions/runner-images#11471 we see
similar problems when using ubuntu24.04 to do cross build for arm64
images.

A workaround is to downgrade to ubuntu22.04 and use Qemu v8.

Fixes confidential-containers#715

Signed-off-by: Xynnn007 <[email protected]>
Xynnn007 added a commit to Xynnn007/kbs that referenced this issue Feb 21, 2025
Due to actions/runner-images#11471 we see
similar problems when using ubuntu24.04 to do cross build for arm64
images.

A workaround is to downgrade to ubuntu22.04 and use Qemu v8.

Fixes confidential-containers#715

Signed-off-by: Xynnn007 <[email protected]>
@amotl
Copy link

amotl commented Feb 22, 2025

Shall this ticket be re-opened?

IMHO yes until it's all fully working again without having to pin versions.

@kishorekumar-anchala: Based on the information above, can you please re-open this ticket, if you agree?

leafty added a commit to SwissDataScienceCenter/renkulab-docker that referenced this issue Feb 24, 2025
fitzthum pushed a commit to confidential-containers/trustee that referenced this issue Feb 24, 2025
Due to actions/runner-images#11471 we see
similar problems when using ubuntu24.04 to do cross build for arm64
images.

A workaround is to downgrade to ubuntu22.04 and use Qemu v8.

Fixes #715

Signed-off-by: Xynnn007 <[email protected]>
@RadxaYuntian
Copy link
Author

The workaround seems to be no good as well: https://github.com/RadxaOS-SDK/rsdk/actions/runs/13560439931

@Fgerthoffert
Copy link

Fgerthoffert commented Feb 28, 2025

We're having the issue as well.

Building this image: https://github.com/Jahia/jahia/blob/JAHIA_8_1_8_0/docker/docker-jahia-core/Dockerfile

Running with:

Current runner version: '2.322.0'
Operating System
  Ubuntu
  24.04.2
  LTS
Runner Image
  Image: ubuntu-24.04
  Version: 2025022.1.0
  Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250223.1/images/ubuntu/Ubuntu2404-Readme.md
  Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu2450223.1
Runner Image Provisioner
  2.0.422.1

Error logs:

[INFO] DOCKER> #30 41.80 Setting up libc-bin (2.35-0ubuntu3.9) ...
[INFO] DOCKER> #30 41.96 qemu: uncaught target signal 11 (Segmentation fault) - core dumped
[INFO] DOCKER> #30 42.47 Segmentation fault (core dumped)
[INFO] DOCKER> #30 42.55 qemu: uncaught target signal 11 (Segmentation fault) - core dumped
[INFO] DOCKER> #30 43.02 Segmentation fault (core dumped)
[INFO] DOCKER> #30 43.02 dpkg: error processing package libc-bin (--configure):
[INFO] DOCKER> #30 43.02  installed libc-bin package post-installation script subprocess returned error exit status 139
[INFO] DOCKER> #30 43.05 Errors were encountered while processing:
[INFO] DOCKER> #30 43.05  libc-bin
[INFO] DOCKER> #30 43.23 E: Sub-process /usr/bin/dpkg returned an error code (1)
[INFO] DOCKER> #30 ERROR: process "/dev/.buildkit_qemu_emulator /bin/sh -c apt-get update     && apt-get upgrade -y     && magick_packages=\"libfontconfig1 libx11-6 libharfbuzz0b libfribidi0\"     && packages=\"apt-utils ncat wget unzip logrotate ${magick_packages} imagemagick\"     && if ${DEBUG_TOOLS}; then         packages=\"${packages} vim binutils less procps iputils-ping htop\";        fi     && if ${LIBREOFFICE}; then         packages=\"${packages} libreoffice\";        fi     && if ${FFMPEG}; then         packages=\"${packages} ffmpeg\";        fi     && apt-get install -y --no-install-recommends         ${packages}     && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 100

RadxaYuntian added a commit to RadxaOS-SDK/rsdk that referenced this issue Feb 28, 2025
@RadxaYuntian
Copy link
Author

Try switching to Ubuntu 22 and use latest tag for docker/setup-qemu-action action. This at least reduce the failure rate to acceptable level.

@Fgerthoffert
Copy link

Fgerthoffert commented Feb 28, 2025

Try switching to Ubuntu 22 and use latest tag for docker/setup-qemu-action action. This at least reduce the failure rate to acceptable level.

Trying with:

      - name: Set up QEMU
        uses: docker/setup-qemu-action@v3
        with:
          platforms: linux/arm64,linux/amd64
          image: tonistiigi/binfmt:latest

EDIT: This resolved the issue for us.

@wildblue
Copy link

wildblue commented Mar 6, 2025

any solution to this?

@wildblue
Copy link

wildblue commented Mar 6, 2025

→ /lib/systemd/system/systemd-pstore.service.
Initializing machine ID from D-Bus machine ID.
Setting up python3-yaml (5.3.1-5) ...
Setting up systemd-sysv (247.3-7+deb11u6) ...
Setting up libpam-systemd:arm64 (247.3-7+deb11u6) ...
Setting up policykit-1 (0.105-31+deb11u1) ...
Setting up rsetup (0.4.11) ...
Created symlink /etc/systemd/system/multi-user.target.wants/rsetup.service → /lib/systemd/system/rsetup.service.
Errors were encountered while processing:
libc-bin
E: run_chroot failed: E: env --unset=APT_CONFIG --unset=TMPDIR /usr/sbin/chroot /tmp/mmdebstrap.EFKSAC2H0C dpkg --install --force-depends --status-fd=<$fd> /var/cache/apt/archives//adduser_3.118+deb11u1_all.deb /var/cache/apt/archives//apt_2.2.4_arm64.deb /var/cache/apt/archives//base-files_11.1+deb11u11_arm64.deb /var/cache/apt/archives//base-passwd_3.5.51_arm64.deb /var/cache/apt/archives//bash_5.1-2+deb11u1_arm64.deb /var/cache/apt/archives//bsdutils_1%3a2.36.1-8+deb11u2_arm64.deb /var/cache/apt/archives//coreutils_8.32-4_arm64.deb /var/cache/apt/archives//dash_0.5.11+git20200708+dd9ef66-5_arm64.deb /var/cache/apt/archives//dbus_1.12.28-0+deb11u1_arm64.deb /var/cache/apt/archives//debconf_1.5.77_all.deb /var/cache/apt/archives//debian-archive-keyring_2021.1.1+deb11u1_all.deb /var/cache/apt/archives//debianutils_4.11.2_arm64.deb /var/cache/apt/archives//device-tree-compiler_1.6.0-1_arm64.deb /var/cache/apt/archives//diffutils_1%3a3.7-5_arm64.deb /var/cache/apt/archives//dmsetup_2%3a1.02.175-2.1_arm64.deb /var/cache/apt/archives//dpkg_1.20.13_arm64.deb /var/cache/apt/archives//findutils_4.8.0-1_arm64.deb /var/cache/apt/archives//gcc-10-base_10.2.1-6_arm64.deb /var/cache/apt/archives//gdisk_1.0.6-1.1_arm64.deb /var/cache/apt/archives//gpgv_2.2.27-2+deb11u2_arm64.deb /var/cache/apt/archives//grep_3.6-1+deb11u1_arm64.deb /var/cache/apt/archives//gzip_1.10-4+deb11u1_arm64.deb /var/cache/apt/archives//hostname_3.23_arm64.deb /var/cache/apt/archives//init-system-helpers_1.60_all.deb /var/cache/apt/archives//jq_1.6-2.1_arm64.deb /var/cache/apt/archives//libacl1_2.2.53-10_arm64.deb /var/cache/apt/archives//libapparmor1_2.13.6-10_arm64.deb /var/cache/apt/archives//libapt-pkg6.0_2.2.4_arm64.deb /var/cache/apt/archives//libargon2-1_020171227-0.2_arm64.deb /var/cache/apt/archives//libattr1_1%3a2.4.48-6_arm64.deb /var/cache/apt/archives//libaudit-common_1%3a3.0-2_all.deb /var/cache/apt/archives//libaudit1_1%3a3.0-2_arm64.deb /var/cache/apt/archives//libblkid1_2.36.1-8+deb11u2_arm64.deb /var/cache/apt/archives//libbz2-1.0_1.0.8-4_arm64.deb /var/cache/apt/archives//libc-bin_2.31-13+deb11u11_arm64.deb /var/cache/apt/archives//libc6_2.31-13+deb11u11_arm64.deb /var/cache/apt/archives//libcap-ng0_0.7.9-2.2+b1_arm64.deb /var/cache/apt/archives//libcap2_1%3a2.44-1_arm64.deb /var/cache/apt/archives//libcom-err2_1.46.2-2+deb11u1_arm64.deb /var/cache/apt/archives//libcrypt1_1%3a4.4.18-4_arm64.deb /var/cache/apt/archives//libcryptsetup12_2%3a2.3.7-1+deb11u1_arm64.deb /var/cache/apt/archives//libdb5.3_5.3.28+dfsg1-0.8_arm64.deb /var/cache/apt/archives//libdbus-1-3_1.12.28-0+deb11u1_arm64.deb /var/cache/apt/archives//libdebconfclient0_0.260_arm64.deb /var/cache/apt/archives//libdevmapper1.02.1_2%3a1.02.175-2.1_arm64.deb /var/cache/apt/archives//libexpat1_2.2.10-2+deb11u6_arm64.deb /var/cache/apt/archives//libfdt1_1.6.0-1_arm64.deb /var/cache/apt/archives//libffi7_3.3-6_arm64.deb /var/cache/apt/archives//libgcc-s1_10.2.1-6_arm64.deb /var/cache/apt/archives//libgcrypt20_1.8.7-6_arm64.deb /var/cache/apt/archives//libglib2.0-0_2.66.8-1+deb11u5_arm64.deb /var/cache/apt/archives//libgmp10_2%3a6.2.1+dfsg-1+deb11u1_arm64.deb /var/cache/apt/archives//libgnutls30_3.7.1-5+deb11u7_arm64.deb /var/cache/apt/archives//libgpg-error0_1.38-2_arm64.deb /var/cache/apt/archives//libgssapi-krb5-2_1.18.3-6+deb11u6_arm64.deb /var/cache/apt/archives//libhogweed6_3.7.3-1_arm64.deb /var/cache/apt/archives//libidn2-0_2.3.0-5_arm64.deb /var/cache/apt/archives//libip4tc2_1.8.7-1_arm64.deb /var/cache/apt/archives//libjq1_1.6-2.1_arm64.deb /var/cache/apt/archives//libjson-c5_0.15-2+deb11u1_arm64.deb /var/cache/apt/archives//libk5crypto3_1.18.3-6+deb11u6_arm64.deb /var/cache/apt/archives//libkeyutils1_1.6.1-2_arm64.deb /var/cache/apt/archives//libkmod2_28-1_arm64.deb /var/cache/apt/archives//libkrb5-3_1.18.3-6+deb11u6_arm64.deb /var/cache/apt/archives//libkrb5support0_1.18.3-6+deb11u6_arm64.deb /var/cache/apt/archives//liblz4-1_1.9.3-2_arm64.deb /var/cache/apt/archives//liblzma5_5.2.5-2.1deb11u1_arm64.deb /var/cache/apt/archives//libmount1_2.36.1-8+deb11u2_arm64.deb /var/cache/apt/archives//libmpdec3_2.5.1-1_arm64.deb /var/cache/apt/archives//libncursesw6_6.2+20201114-2+deb11u2_arm64.deb /var/cache/apt/archives//libnettle8_3.7.3-1_arm64.deb /var/cache/apt/archives//libnewt0.52_0.52.21-4+b3_arm64.deb /var/cache/apt/archives//libnsl2_1.3.0-2_arm64.deb /var/cache/apt/archives//libonig5_6.9.6-1.1_arm64.deb /var/cache/apt/archives//libp11-kit0_0.23.22-1_arm64.deb /var/cache/apt/archives//libpam-modules-bin_1.4.0-9+deb11u1_arm64.deb /var/cache/apt/archives//libpam-modules_1.4.0-9+deb11u1_arm64.deb /var/cache/apt/archives//libpam-runtime_1.4.0-9+deb11u1_all.deb /var/cache/apt/archives//libpam-systemd_247.3-7+deb11u6_arm64.deb /var/cache/apt/archives//libpam0g_1.4.0-9+deb11u1_arm64.deb /var/cache/apt/archives//libparted2_3.4-1_arm64.deb /var/cache/apt/archives//libpcre2-8-0_10.36-2+deb11u1_arm64.deb /var/cache/apt/archives//libpcre3_2%3a8.39-13_arm64.deb /var/cache/apt/archives//libpolkit-agent-1-0_0.105-31+deb11u1_arm64.deb /var/cache/apt/archives//libpolkit-gobject-1-0_0.105-31+deb11u1_arm64.deb /var/cache/apt/archives//libpopt0_1.18-2_arm64.deb /var/cache/apt/archives//libpython3-stdlib_3.9.2-3_arm64.deb /var/cache/apt/archives//libpython3.9-minimal_3.9.2-1+deb11u2_arm64.deb /var/cache/apt/archives//libpython3.9-stdlib_3.9.2-1+deb11u2_arm64.deb /var/cache/apt/archives//libreadline8_8.1-1_arm64.deb /var/cache/apt/archives//librtui_0.1.6_all.deb /var/cache/apt/archives//libseccomp2_2.5.1-1+deb11u1_arm64.deb /var/cache/apt/archives//libselinux1_3.1-3_arm64.deb /var/cache/apt/archives//libsemanage-common_3.1-1_all.deb /var/cache/apt/archives//libsemanage1_3.1-1+b2_arm64.deb /var/cache/apt/archives//libsepol1_3.1-1+deb11u1_arm64.deb /var/cache/apt/archives//libslang2_2.3.2-5_arm64.deb /var/cache/apt/archives//libsmartcols1_2.36.1-8+deb11u2_arm64.deb /var/cache/apt/archives//libsqlite3-0_3.34.1-3+deb11u1_arm64.deb /var/cache/apt/archives//libssl1.1_1.1.1w-0+deb11u2_arm64.deb /var/cache/apt/archives//libstdc++6_10.2.1-6_arm64.deb /var/cache/apt/archives//libsystemd0_247.3-7+deb11u6_arm64.deb /var/cache/apt/archives//libtasn1-6_4.16.0-2+deb11u2_arm64.deb /var/cache/apt/archives//libtinfo6_6.2+20201114-2+deb11u2_arm64.deb /var/cache/apt/archives//libtirpc-common_1.3.1-1+deb11u1_all.deb /var/cache/apt/archives//libtirpc3_1.3.1-1+deb11u1_arm64.deb /var/cache/apt/archives//libudev1_247.3-7+deb11u6_arm64.deb /var/cache/apt/archives//libunistring2_0.9.10-4_arm64.deb /var/cache/apt/archives//libuuid1_2.36.1-8+deb11u2_arm64.deb /var/cache/apt/archives//libxxhash0_0.8.0-2_arm64.deb /var/cache/apt/archives//libyaml-0-2_0.2.2-1_arm64.deb /var/cache/apt/archives//libzstd1_1.4.8+dfsg-2.1_arm64.deb /var/cache/apt/archives//linux-base_4.6_all.deb /var/cache/apt/archives//login_1%3a4.8.1-1_arm64.deb /var/cache/apt/archives//lsb-base_11.1.0_all.deb /var/cache/apt/archives//mawk_1.3.4.20200120-2_arm64.deb /var/cache/apt/archives//media-types_4.0.0_all.deb /var/cache/apt/archives//mount_2.36.1-8+deb11u2_arm64.deb /var/cache/apt/archives//ncurses-base_6.2+20201114-2+deb11u2_all.deb /var/cache/apt/archives//ncurses-bin_6.2+20201114-2+deb11u2_arm64.deb /var/cache/apt/archives//parted_3.4-1_arm64.deb /var/cache/apt/archives//passwd_1%3a4.8.1-1_arm64.deb /var/cache/apt/archives//perl-base_5.32.1-4+deb11u4_arm64.deb /var/cache/apt/archives//policykit-1_0.105-31+deb11u1_arm64.deb /var/cache/apt/archives//python3-minimal_3.9.2-3_arm64.deb /var/cache/apt/archives//python3-yaml_5.3.1-5_arm64.deb /var/cache/apt/archives//python3.9-minimal_3.9.2-1+deb11u2_arm64.deb /var/cache/apt/archives//python3.9_3.9.2-1+deb11u2_arm64.deb /var/cache/apt/archives//python3_3.9.2-3_arm64.deb /var/cache/apt/archives//readline-common_8.1-1_all.deb /var/cache/apt/archives//rsetup_0.4.11_all.deb /var/cache/apt/archives//sed_4.7-1_arm64.deb /var/cache/apt/archives//systemd-sysv_247.3-7+deb11u6_arm64.deb /var/cache/apt/archives//systemd_247.3-7+deb11u6_arm64.deb /var/cache/apt/archives//sysvinit-utils_2.96-7+deb11u1_arm64.deb /var/cache/apt/archives//tar_1.34+dfsg-1+deb11u1_arm64.deb /var/cache/apt/archives//tzdata_2024b-0+deb11u1_all.deb /var/cache/apt/archives//u-boot-menu_4.2.2_all.deb /var/cache/apt/archives//util-linux_2.36.1-8+deb11u2_arm64.deb /var/cache/apt/archives//whiptail_0.52.21-4+b3_arm64.deb /var/cache/apt/archives//zlib1g_1%3a1.2.11.dfsg-2+deb11u2_arm64.deb failed
W: listening on child socket failed:
I: removing tempdir /tmp/mmdebstrap.EFKSAC2H0C...
E: mmdebstrap failed to run
2025-03-06 22:16:21,342 bdebstrap ERROR: mmdebstrap failed with exit code 255. See above for details.

@wildblue
Copy link

wildblue commented Mar 6, 2025

output with debug flag:
Reading package lists...
E: The repository 'https://radxa-repo.github.io/jammy-test rockchip-jammy-test Release' does not have a Release file.
E: apt-get update --error-on=any -oAPT::Status-Fd=<$fd> -oDpkg::Use-Pty=false failed at /usr/bin/mmdebstrap line 184.
main::error("apt-get update --error-on=any -oAPT::Status-Fd=<$fd> -oDpkg::"...) called at /usr/bin/mmdebstrap line 841
main::run_progress(CODE(0x559fee8a7978), CODE(0x559fee4f19a8), CODE(0x559fee4dbb48), "/workspaces/rsdk/overlays/radxa-gs/drivers/rtl88x2eu/out/rock"...) called at /usr/bin/mmdebstrap line 952
main::run_apt_progress(HASH(0x559fee901678)) called at /usr/bin/mmdebstrap line 1974
main::run_update(HASH(0x559fee92d1b0)) called at /usr/bin/mmdebstrap line 1516
main::setup(HASH(0x559fee92d1b0)) called at /usr/bin/mmdebstrap line 5542
main::main() called at /usr/bin/mmdebstrap line 5868
D: 201076 3388 listener: finished reading command
D: 201076 3692 hooklistener errored out: E: received eof on socket at /usr/bin/mmdebstrap line 184.
main::error("received eof on socket") called at /usr/bin/mmdebstrap line 3389
eval {...} called at /usr/bin/mmdebstrap line 3378
main::hooklistener() called at /usr/bin/mmdebstrap line 4116
main::main() called at /usr/bin/mmdebstrap line 5868

W: listening on child socket failed:
D: 201043 5679 finish to listen for hooks
E: mmdebstrap failed to run at /usr/bin/mmdebstrap line 184.
main::error("mmdebstrap failed to run") called at /usr/bin/mmdebstrap line 5864
main::main() called at /usr/bin/mmdebstrap line 5868
2025-03-06 23:07:37,520 bdebstrap INFO: Execution time: 2 min 27.775 s (= 147.775 s)
2025-03-06 23:07:37,545 bdebstrap ERROR: mmdebstrap failed with exit code 29. See above for details.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests