Agenda items for kernel-team meeting on 2024-07-03

2024-07-02 Thread Salvatore Bonaccorso
Hi This weeks meeting will happen tomorrow, 2024-07-03 (this time as aternating between jitsi and IRC it will be on IRC). Currently the agenda is empty. https://salsa.debian.org/kernel-team/meetings/-/wikis/20240703 If you have any points to discuss, please reply it in this thread. Summary of

Bug#972396: [PATCH] fix 'no space left on device' : use mktemp to avoid boot partition

2024-07-02 Thread John Mullee
diff --git a/update-initramfs b/update-initramfs index 4bb8d8a..5fe7921 100755 --- a/update-initramfs +++ b/update-initramfs @@ -138,15 +138,16 @@ generate_initramfs()      if [ "${verbose}" = 1 ]; then          OPTS="-v ${OPTS}"      fi +    initramfs_tmp=$(mktemp)      # shellcheck disa