From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4fQCcr6Scmz32fr for ; Tue, 03 Mar 2026 11:05:00 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4fQCcn41zdz2xMK for ; Tue, 03 Mar 2026 11:04:57 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4fQCcl2WlRz2x3 for ; Tue, 03 Mar 2026 11:04:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1772535895; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=3bmRWCtf3/jcEHZjYLkExhQaY1JW12CpWI1AYpMmf3A=; b=RVO2uMc5z3/ulJOOcHLO0ev/GnUBikxr9Af++j/ZlffBDhboBBxDWz5jnyPlLHqBCm3oE8 8N0sHYdoSsj63lAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1772535895; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=3bmRWCtf3/jcEHZjYLkExhQaY1JW12CpWI1AYpMmf3A=; b=Bu3Pkgt42t4imVjJ8hFuL8ne+2mZeY9Kut3+ernkH1AmvyjfH0/8nnN3Ii+/DvendWP8Md 0xArQCYb+RUarNlxJwwjifbNsd+LqxgfV5uAYnd44NQBxpHhmiAhm75UiIrlmFEEUHUggg tsXhXulN4M47yvSr4Evh/xqI3+5ZnGms4winK8lh5GM/HCkLu3eCEuHtPi5npV6TGVHprn XtfzO86BU78X2vEV98Q705ugQfr6IjhcSvWwTbzaSZiW1IsnqjDKq6bfDP/CLWRBiZYgeq vtwHr572WpUfAnYYm9ZApwY2Zz/J/tcDfmNaHTrg++GhyvJXxdNY7zSW/cURfw== Message-ID: <00fa6d59-93f4-49d8-8c0a-1ae0bf695840@ipfire.org> Date: Tue, 3 Mar 2026 12:04:45 +0100 Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Language: en-GB To: "IPFire: Development-List" From: Adolf Belka Subject: Problem with building cdrom step Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi All, I mentioned this issue in yesterday's conf call. I was still waiting for the results of a complete standard set of packages based on a git pull from morning of 2nd March. That also failed in cdrom. I had a working build on 27th Feb and the only IPFire package updates since then are the ones I built on the 27th Feb. However my Arch Linux system has had an update on 2nd March just before I did my build so the issue may be coming from those updates. The error message I get is the following: # Build a GRUB EFI image mkdir -pv /tmp/cdrom/EFI/BOOT mkdir: created directory '/tmp/cdrom/EFI' mkdir: created directory '/tmp/cdrom/EFI/BOOT' grub-mkimage \ --format=x86_64-efi \ --output=/tmp/cdrom/EFI/BOOT/bootx64.efi \ --config=/tmp/grub-efi.cfg \ --compression=xz \ --prefix=/EFI/BOOT \ $(for mod in all_video at_keyboard boot bitmap_scale cat chain configfile disk echo efi_gop efi_uga ext2 extcmd fat file font fxterm_menu gfxterm gfxmenu gfxterm_background gzio halt help iso9660 jpeg loadbios loadenv loopback linux ls memdisk minicmd nativedisk normal ntfs part_gpt part_msdos png probe reboot regexp search search_fs_file search_fs_uuid search_label tar test tga true usb_keyboard; do [ -f "/usr/lib/grub/x86_64-efi/${mod}.mod" ] && echo "${mod}"; done) # Install GRUB configuration mkdir -pv /tmp/cdrom/EFI/BOOT sed -e "s/NAME/IPFire/g" -e "s/VERSION/2.29/g" -e "s/ARCH/x86_64/g" \ < /usr/src/config/cdrom/grub.cfg > /tmp/cdrom/EFI/BOOT/grub.cfg # Create the EFI Eltorito image dd if=/dev/zero of=/tmp/cdrom/boot/isolinux/efiboot.img bs=1k count=2880 2880+0 records in 2880+0 records out 2949120 bytes (2.9 MB, 2.8 MiB) copied, 0.0038391 s, 768 MB/s mkdosfs -F 12 -n "IPFIRE_EFI" /tmp/cdrom/boot/isolinux/efiboot.img mkfs.fat 4.2 (2021-01-31) # Mount the EFI image mkdir -pv /tmp/efiboot.img mkdir: created directory '/tmp/efiboot.img' mount -o loop /tmp/cdrom/boot/isolinux/efiboot.img /tmp/efiboot.img mount: /tmp/efiboot.img: failed to setup loop device for /tmp/cdrom/boot/isolinux/efiboot.img. make: *** [cdrom:188: /usr/src/log/cdrom] Error 32 make: Leaving directory '/usr/src/lfs' The Arch Linux update had a lot of changes. The update prior to that one was 5 days ago. Here is a list of the update changes in the various packages. Not sure if any of those could be causing the problem of not being able to setup the loop device. upgraded iana-etc (20260203-1 -> 20260225-2) upgraded systemd-libs (259.1-1 -> 259.2-1) upgraded libngtcp2 (1.20.0-1 -> 1.21.0-1) upgraded ca-certificates-mozilla (3.120.1-1 -> 3.121-1) upgraded file (5.46-5 -> 5.47-1) upgraded systemd (259.1-1 -> 259.2-1) upgraded accountsservice (23.13.9-3 -> 25.34.76-2) upgraded adwaita-fonts (49.0-2 -> 50.0-1) upgraded libksba (1.6.7-2 -> 1.6.8-1) upgraded archlinux-keyring (20260206-1 -> 20260301-1) upgraded libmaxminddb (1.12.2-2 -> 1.13.2-1) upgraded bind (9.20.19-1 -> 9.20.20-1) upgraded bluez (5.86-2 -> 5.86-4) upgraded bluez-libs (5.86-2 -> 5.86-4) upgraded bluez-utils (5.86-2 -> 5.86-4) upgraded bubblewrap (0.11.0-1 -> 0.11.0-2) upgraded compiler-rt (21.1.8-1 -> 21.1.8-2) upgraded deno (2.6.10-1 -> 2.7.1-1) upgraded dtkcommon (5.7.30-1 -> 6.7.31-1) upgraded nss (3.120.1-1 -> 3.121-1) upgraded v4l-utils (1.32.0-1 -> 1.32.0-2) upgraded mesa (1:25.3.5-1 -> 1:26.0.1-1) upgraded xkeyboard-config (2.46-1 -> 2.47-1) upgraded firefox (147.0.4-1 -> 148.0-1) upgraded firefox-i18n-en-gb (147.0.4-1 -> 148.0-1) upgraded fmt (12.1.0-1 -> 12.1.0-2) upgraded gstreamer (1.28.0-2 -> 1.28.1-1) upgraded gst-plugins-base-libs (1.28.0-2 -> 1.28.1-1) upgraded gst-libav (1.28.0-2 -> 1.28.1-1) upgraded gst-plugins-bad-libs (1.28.0-2 -> 1.28.1-1) upgraded gst-plugins-base (1.28.0-2 -> 1.28.1-1) upgraded gst-plugins-good (1.28.0-2 -> 1.28.1-1) upgraded mdadm (4.4-2 -> 4.5-2) upgraded gvfs (1.58.1-1 -> 1.58.2-1) upgraded gvfs-mtp (1.58.1-1 -> 1.58.2-1) upgraded intel-media-driver (25.3.4-2 -> 25.4.6-1) upgraded ldb (2:4.23.5-1 -> 2:4.23.6-1) upgraded libfyaml (0.9.4-1 -> 0.9.5-1) upgraded libldac (2.0.2.3-2 -> 2.0.2.3-3) upgraded libwbclient (2:4.23.5-1 -> 2:4.23.6-1) upgraded linux (6.18.9.arch1-2 -> 6.18.13.arch1-1) upgraded linux-headers (6.18.9.arch1-2 -> 6.18.13.arch1-1) upgraded lzip (1.25-2 -> 1.25-3) upgraded nodejs (25.6.1-2 -> 25.7.0-1) installed openjph (0.26.3-3) upgraded openexr (3.4.5-1 -> 3.4.6-1) upgraded openmpi (5.0.9-4 -> 5.0.10-1) upgraded python-chardet (5.2.0-7 -> 6.0.0.post1-1) upgraded python-requests (2.32.5-3 -> 2.32.5-4) upgraded smbclient (2:4.23.5-1 -> 2:4.23.6-1) upgraded samba (2:4.23.5-1 -> 2:4.23.6-1) upgraded systemd-sysvcompat (259.1-1 -> 259.2-1) upgraded thunderbird (147.0.2-1 -> 148.0-4) upgraded thunderbird-i18n-en-gb (147.0.2-1 -> 148.0-4) upgraded vim-runtime (9.2.0038-1 -> 9.2.0081-1) upgraded vim (9.2.0038-1 -> 9.2.0081-1) upgraded virtualbox-host-modules-arch (7.2.6-4 -> 7.2.6-5) upgraded vulkan-mesa-implicit-layers (1:25.3.5-1 -> 1:26.0.1-1) upgraded vulkan-radeon (1:25.3.5-1 -> 1:26.0.1-1) upgraded wxwidgets-common (3.2.9-4 -> 3.2.10-1) upgraded wxwidgets-gtk3 (3.2.9-4 -> 3.2.10-1) upgraded zed (0.224.11-1 -> 0.225.10-1) Any suggestions for how to fix this gladly accepted. Regards, Adolf.