This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via 7a4ae745478165d03a40f6b602e4e62125019961 (commit) via 49d5c96ce45b8623bc4b2f4721ee4a0ce2f6bd56 (commit) via 12a21734fb6344d03829b2f538431f4d10ba41a9 (commit) from 5a1aaf023329833600bef771848c381da31347b9 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 7a4ae745478165d03a40f6b602e4e62125019961 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Sep 12 09:07:02 2024 +0000
Revert "make.sh: Bind-mount all loop devices"
This reverts commit 7ad12edfb0d233498410f2afc09753e70de50f80.
This patch does not fix the original problem and still leaves the build environment without usable loop devices.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 49d5c96ce45b8623bc4b2f4721ee4a0ce2f6bd56 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Sep 12 09:06:36 2024 +0000
core189: Ship intel microcode and regenerate initramdisks
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 12a21734fb6344d03829b2f538431f4d10ba41a9 Author: Adolf Belka adolf.belka@ipfire.org Date: Wed Sep 11 17:04:23 2024 +0200
intel-microcode: Update to version 20240910
- Update from version 20240813 to 20240910 - Update of rootfile not required - Changelog 20240910 Security updates for INTEL-SA-01103 Security updates for INTEL-SA-01097 Update for functional issues. Refer to Intel® Core™ Ultra Processor for details. Update for functional issues. Refer to 13th Generation Intel® Core™ Processor Specification Update for details. Update for functional issues. Refer to 12th Generation Intel® Core™ Processor Family for details. Update for functional issues. Refer to Intel® Processors and Intel® Core™ i3 N-Series for details. For information on New Platforms and Updated Platforms see https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases...
Signed-off-by: Adolf Belka adolf.belka@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: .../189}/filelists/x86_64/intel-microcode | 0 config/rootfiles/core/189/update.sh | 10 ++++++++++ lfs/intel-microcode | 4 ++-- make.sh | 21 ++++++++------------- 4 files changed, 20 insertions(+), 15 deletions(-) copy config/rootfiles/{oldcore/121 => core/189}/filelists/x86_64/intel-microcode (100%)
Difference in files: diff --git a/config/rootfiles/core/189/filelists/x86_64/intel-microcode b/config/rootfiles/core/189/filelists/x86_64/intel-microcode new file mode 120000 index 000000000..d5ac074e2 --- /dev/null +++ b/config/rootfiles/core/189/filelists/x86_64/intel-microcode @@ -0,0 +1 @@ +../../../../common/x86_64/intel-microcode \ No newline at end of file diff --git a/config/rootfiles/core/189/update.sh b/config/rootfiles/core/189/update.sh index 3972f3507..149f8f677 100644 --- a/config/rootfiles/core/189/update.sh +++ b/config/rootfiles/core/189/update.sh @@ -352,6 +352,16 @@ telinit u /usr/local/bin/openvpnctrl -s /usr/local/bin/openvpnctrl -sn2n
+# Build initial ramdisks +dracut --regenerate-all --force +KVER="xxxKVERxxx" +case "$(uname -m)" in + aarch64) + mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire + # dont remove initramfs because grub need this to boot. + ;; +esac + # This update needs a reboot... touch /var/run/need_reboot
diff --git a/lfs/intel-microcode b/lfs/intel-microcode index 0773c8fc6..7b77c2543 100644 --- a/lfs/intel-microcode +++ b/lfs/intel-microcode @@ -24,7 +24,7 @@
include Config
-VER = 20240813 +VER = 20240910
THISAPP = Intel-Linux-Processor-Microcode-Data-Files-microcode-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 39fefb8fba7c204a5e62ea2147aaf6152a01e2be02b18b9da73a2379633fa8536be2508b97ac0b6d7aad998d060cee733224250c9c4a8ca283e9f28fd011831e +$(DL_FILE)_BLAKE2 = b4c353dd340ef8004e5be2e596de0ebaf8366684a3371207e14d3d8c0e4bbdc5a9c75d8279d280d1029452368556a0c2e7bf85f3fe75f1b1560e16c953f223b7
install : $(TARGET)
diff --git a/make.sh b/make.sh index e8c3b0827..21543c667 100755 --- a/make.sh +++ b/make.sh @@ -447,19 +447,14 @@ prepareenv() {
# Create loop devices mknod -m 666 "${BUILD_DIR}/dev/loop-control" c 10 237 - - local loop - - # Copy all loop devices from the host - for loop in /dev/loop*; do - if [ -b "${loop}" ]; then - # Create the mountpoint - : > "${BUILD_DIR}${loop}" - - # Bind-mount the device - mount --bind "${loop}" "${BUILD_DIR}${loop}" - fi - done + mknod -m 666 "${BUILD_DIR}/dev/loop0" b 7 0 + mknod -m 666 "${BUILD_DIR}/dev/loop1" b 7 1 + mknod -m 666 "${BUILD_DIR}/dev/loop2" b 7 2 + mknod -m 666 "${BUILD_DIR}/dev/loop3" b 7 3 + mknod -m 666 "${BUILD_DIR}/dev/loop4" b 7 4 + mknod -m 666 "${BUILD_DIR}/dev/loop5" b 7 5 + mknod -m 666 "${BUILD_DIR}/dev/loop6" b 7 6 + mknod -m 666 "${BUILD_DIR}/dev/loop7" b 7 7
# Create directories mkdir -p "${BUILD_DIR}/dev/pts"
hooks/post-receive -- IPFire 2.x development tree