Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
4679becf8c
commit
9f7322797e
769 changed files with 6065 additions and 10216 deletions
3
debian/build/version-info
vendored
Normal file
3
debian/build/version-info
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
Source: linux
|
||||
Version: 6.12.33-1progress8u1
|
||||
Distribution: horok
|
7214
debian/control
vendored
7214
debian/control
vendored
File diff suppressed because one or more lines are too long
10
debian/control.md5sum
vendored
10
debian/control.md5sum
vendored
|
@ -1,11 +1,11 @@
|
|||
1576b8111ace5ba39d2670119fce32c9 debian/bin/gencontrol.py
|
||||
edab411012bc2e6f50c192b1619f795f debian/build/version-info
|
||||
8a941704f78a69dc542819ac07d9e0d9 debian/build/version-info
|
||||
ba2c200f8c43f7ec8d8323561739379a debian/config/alpha/defines.toml
|
||||
9c7e42b270c37dcbc951f0696b8f4293 debian/config/amd64/defines.toml
|
||||
cfab80ba66f77402287b44e9143e844f debian/config/arm64/defines.toml
|
||||
b4aeea6dddee887fb66b8439999e5bfe debian/config/amd64/defines.toml
|
||||
0913872438e69ece67aa179cf92e8521 debian/config/arm64/defines.toml
|
||||
c90a866f733c09fe7be641341206bcf3 debian/config/armel/defines.toml
|
||||
140108e427d4e105d5955982c886a731 debian/config/armhf/defines.toml
|
||||
939fe1029d5f8b79a3767706fa2296ac debian/config/defines.toml
|
||||
287f98af191cf0cb871e9d8efb5497ec debian/config/defines.toml
|
||||
c840ab923e0857515675530f3f72496b debian/config/hppa/defines.toml
|
||||
e6bea61846bdd8172d426c492e2a834b debian/config/loong64/defines.toml
|
||||
0ee23490da620ce420b23b2d065ee2d3 debian/config/m68k/defines.toml
|
||||
|
@ -66,7 +66,7 @@ fe7cdc2df9d38c9a43bfc1f5abadd127 debian/templates/signed.headers.meta.lintian-o
|
|||
5f670e46192710c3ed7caad2b49c5186 debian/templates/signed.image.prerm.in
|
||||
3cae3a79a66a1b6b9c951f96dafd357b debian/templates/signed.source.control.in
|
||||
ed48bfaf11f088485c9a55ef71ab5a13 debian/templates/signed.source.lintian-overrides.in
|
||||
2cf3112371d0990a21d81e91e5694cc4 debian/templates/source.control.in
|
||||
7e2d78c75e46eaf04d191d369f54246e debian/templates/source.control.in
|
||||
edfa7fed4bdffa5ce37dc67af2875954 debian/templates/sourcebin.control.in
|
||||
0f283d1deb7af77eba65072e1cd81de3 debian/templates/sourcebin.meta.control.in
|
||||
a20d83421667bad21739041d4e743ed1 debian/templates/sourcebin.meta.maintscript.in
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" != configure ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
depmod $version
|
||||
|
||||
if [ -f /lib/modules/$version/.fresh-install ]; then
|
||||
change=install
|
||||
else
|
||||
change=upgrade
|
||||
fi
|
||||
linux-update-symlinks $change $version $image_path
|
||||
rm -f /lib/modules/$version/.fresh-install
|
||||
|
||||
linux-run-hooks image postinst $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,32 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
rm -f /lib/modules/$version/.fresh-install
|
||||
|
||||
if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then
|
||||
linux-update-symlinks remove $version $image_path
|
||||
fi
|
||||
|
||||
if command -v linux-run-hooks >/dev/null; then
|
||||
linux-run-hooks image postrm $version $image_path -- "$@"
|
||||
else
|
||||
echo >&2 'W: linux-base is not installed; cannot run postrm hooks'
|
||||
fi
|
||||
|
||||
if [ "$1" = purge ]; then
|
||||
for extra_file in modules.dep modules.isapnpmap modules.pcimap \
|
||||
modules.usbmap modules.parportmap \
|
||||
modules.generic_string modules.ieee1394map \
|
||||
modules.ieee1394map modules.pnpbiosmap \
|
||||
modules.alias modules.ccwmap modules.inputmap \
|
||||
modules.symbols modules.ofmap \
|
||||
modules.seriomap modules.\*.bin \
|
||||
modules.softdep modules.weakdep modules.devname; do
|
||||
eval rm -f /lib/modules/$version/$extra_file
|
||||
done
|
||||
rmdir /lib/modules/$version || true
|
||||
fi
|
||||
|
||||
exit 0
|
|
@ -1,18 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" = abort-upgrade ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$1" = install ]; then
|
||||
# Create a flag file for postinst
|
||||
mkdir -p /lib/modules/$version
|
||||
touch /lib/modules/$version/.fresh-install
|
||||
fi
|
||||
|
||||
linux-run-hooks image preinst $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,14 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" != remove ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
linux-check-removal $version
|
||||
|
||||
linux-run-hooks image prerm $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,22 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-cloud-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" != configure ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
depmod $version
|
||||
|
||||
if [ -f /lib/modules/$version/.fresh-install ]; then
|
||||
change=install
|
||||
else
|
||||
change=upgrade
|
||||
fi
|
||||
linux-update-symlinks $change $version $image_path
|
||||
rm -f /lib/modules/$version/.fresh-install
|
||||
|
||||
linux-run-hooks image postinst $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,32 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-cloud-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
rm -f /lib/modules/$version/.fresh-install
|
||||
|
||||
if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then
|
||||
linux-update-symlinks remove $version $image_path
|
||||
fi
|
||||
|
||||
if command -v linux-run-hooks >/dev/null; then
|
||||
linux-run-hooks image postrm $version $image_path -- "$@"
|
||||
else
|
||||
echo >&2 'W: linux-base is not installed; cannot run postrm hooks'
|
||||
fi
|
||||
|
||||
if [ "$1" = purge ]; then
|
||||
for extra_file in modules.dep modules.isapnpmap modules.pcimap \
|
||||
modules.usbmap modules.parportmap \
|
||||
modules.generic_string modules.ieee1394map \
|
||||
modules.ieee1394map modules.pnpbiosmap \
|
||||
modules.alias modules.ccwmap modules.inputmap \
|
||||
modules.symbols modules.ofmap \
|
||||
modules.seriomap modules.\*.bin \
|
||||
modules.softdep modules.weakdep modules.devname; do
|
||||
eval rm -f /lib/modules/$version/$extra_file
|
||||
done
|
||||
rmdir /lib/modules/$version || true
|
||||
fi
|
||||
|
||||
exit 0
|
|
@ -1,18 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-cloud-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" = abort-upgrade ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$1" = install ]; then
|
||||
# Create a flag file for postinst
|
||||
mkdir -p /lib/modules/$version
|
||||
touch /lib/modules/$version/.fresh-install
|
||||
fi
|
||||
|
||||
linux-run-hooks image preinst $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,14 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-cloud-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" != remove ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
linux-check-removal $version
|
||||
|
||||
linux-run-hooks image prerm $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,22 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rt-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" != configure ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
depmod $version
|
||||
|
||||
if [ -f /lib/modules/$version/.fresh-install ]; then
|
||||
change=install
|
||||
else
|
||||
change=upgrade
|
||||
fi
|
||||
linux-update-symlinks $change $version $image_path
|
||||
rm -f /lib/modules/$version/.fresh-install
|
||||
|
||||
linux-run-hooks image postinst $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,32 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rt-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
rm -f /lib/modules/$version/.fresh-install
|
||||
|
||||
if [ "$1" != upgrade ] && command -v linux-update-symlinks >/dev/null; then
|
||||
linux-update-symlinks remove $version $image_path
|
||||
fi
|
||||
|
||||
if command -v linux-run-hooks >/dev/null; then
|
||||
linux-run-hooks image postrm $version $image_path -- "$@"
|
||||
else
|
||||
echo >&2 'W: linux-base is not installed; cannot run postrm hooks'
|
||||
fi
|
||||
|
||||
if [ "$1" = purge ]; then
|
||||
for extra_file in modules.dep modules.isapnpmap modules.pcimap \
|
||||
modules.usbmap modules.parportmap \
|
||||
modules.generic_string modules.ieee1394map \
|
||||
modules.ieee1394map modules.pnpbiosmap \
|
||||
modules.alias modules.ccwmap modules.inputmap \
|
||||
modules.symbols modules.ofmap \
|
||||
modules.seriomap modules.\*.bin \
|
||||
modules.softdep modules.weakdep modules.devname; do
|
||||
eval rm -f /lib/modules/$version/$extra_file
|
||||
done
|
||||
rmdir /lib/modules/$version || true
|
||||
fi
|
||||
|
||||
exit 0
|
|
@ -1,18 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rt-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" = abort-upgrade ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$1" = install ]; then
|
||||
# Create a flag file for postinst
|
||||
mkdir -p /lib/modules/$version
|
||||
touch /lib/modules/$version/.fresh-install
|
||||
fi
|
||||
|
||||
linux-run-hooks image preinst $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,14 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rt-arm64
|
||||
image_path=/boot/vmlinuz-$version
|
||||
|
||||
if [ "$1" != remove ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
linux-check-removal $version
|
||||
|
||||
linux-run-hooks image prerm $version $image_path -- "$@"
|
||||
|
||||
exit 0
|
2
debian/linux-headers-4kc-malta.maintscript
vendored
2
debian/linux-headers-4kc-malta.maintscript
vendored
|
@ -1 +1 @@
|
|||
dir_to_symlink /usr/share/doc/linux-headers-4kc-malta linux-headers-6.12.33+deb13-4kc-malta 5.7~rc5-1~exp1 linux-headers-4kc-malta
|
||||
dir_to_symlink /usr/share/doc/linux-headers-4kc-malta linux-headers-6.12.33+deb13progress8-4kc-malta 5.7~rc5-1~exp1 linux-headers-4kc-malta
|
||||
|
|
2
debian/linux-headers-5kc-malta.maintscript
vendored
2
debian/linux-headers-5kc-malta.maintscript
vendored
|
@ -1 +1 @@
|
|||
dir_to_symlink /usr/share/doc/linux-headers-5kc-malta linux-headers-6.12.33+deb13-5kc-malta 5.7~rc5-1~exp1 linux-headers-5kc-malta
|
||||
dir_to_symlink /usr/share/doc/linux-headers-5kc-malta linux-headers-6.12.33+deb13progress8-5kc-malta 5.7~rc5-1~exp1 linux-headers-5kc-malta
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-4kc-malta: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-4kc-malta: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-5kc-malta: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-5kc-malta: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-alpha-generic: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-alpha-generic: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-alpha-smp: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-alpha-smp: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-amd64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-amd64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,4 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-arm64-16k: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-arm64-16k: unstripped-binary-or-object [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-arm64-16k: shared-library-lacks-prerequisites [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-arm64-16k
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,4 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-arm64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-arm64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-arm64: shared-library-lacks-prerequisites [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-arm64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-armmp-lpae: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-armmp-lpae: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-armmp-lpae
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-armmp: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-armmp: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-armmp
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-cloud-amd64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-cloud-amd64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-cloud-amd64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,4 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-cloud-arm64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-cloud-arm64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-cloud-arm64: shared-library-lacks-prerequisites [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-cloud-arm64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-loong64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-loong64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-loong64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-loongson-3: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-loongson-3: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-loongson-3
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-m68k: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-m68k: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-m68k
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-mips32r2eb: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-mips32r2eb: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-mips32r2eb
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-mips32r2el: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-mips32r2el: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-mips32r2el
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-mips64r2eb: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-mips64r2eb: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-mips64r2eb
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-mips64r2el: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-mips64r2el: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-mips64r2el
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-mips64r6el: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-mips64r6el: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-mips64r6el
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-octeon: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-octeon: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-octeon
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-parisc: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-parisc: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-parisc
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-parisc64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-parisc64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-parisc64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-powerpc-smp: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-powerpc-smp: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-powerpc-smp
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-powerpc: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-powerpc: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-powerpc
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-powerpc64-64k: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-powerpc64-64k: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-powerpc64-64k
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-powerpc64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-powerpc64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-powerpc64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-powerpc64le-64k: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-powerpc64le-64k: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-powerpc64le-64k
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-powerpc64le: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-powerpc64le: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-powerpc64le
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-riscv64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-riscv64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-riscv64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-rpi: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-rpi: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rpi
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-rt-amd64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-rt-amd64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rt-amd64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,4 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-rt-arm64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-rt-arm64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-rt-arm64: shared-library-lacks-prerequisites [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rt-arm64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-rt-armmp: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-rt-armmp: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-rt-armmp
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-s390x: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-s390x: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-s390x
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-sh7751r: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-sh7751r: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-sh7751r
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-sh7785lcr: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-sh7785lcr: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-sh7785lcr
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-sparc64-smp: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-sparc64-smp: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-sparc64-smp
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
|
@ -1,3 +0,0 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13-sparc64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13-sparc64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-sparc64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
3
debian/linux-headers-6.12.33+deb13progress8-4kc-malta.lintian-overrides
vendored
Normal file
3
debian/linux-headers-6.12.33+deb13progress8-4kc-malta.lintian-overrides
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13progress8-4kc-malta: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13progress8-4kc-malta: unstripped-binary-or-object [usr/src/*/vmlinux]
|
7
debian/linux-headers-6.12.33+deb13progress8-4kc-malta.postinst
vendored
Normal file
7
debian/linux-headers-6.12.33+deb13progress8-4kc-malta.postinst
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13progress8-4kc-malta
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
3
debian/linux-headers-6.12.33+deb13progress8-5kc-malta.lintian-overrides
vendored
Normal file
3
debian/linux-headers-6.12.33+deb13progress8-5kc-malta.lintian-overrides
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13progress8-5kc-malta: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13progress8-5kc-malta: unstripped-binary-or-object [usr/src/*/vmlinux]
|
7
debian/linux-headers-6.12.33+deb13progress8-5kc-malta.postinst
vendored
Normal file
7
debian/linux-headers-6.12.33+deb13progress8-5kc-malta.postinst
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13progress8-5kc-malta
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
3
debian/linux-headers-6.12.33+deb13progress8-alpha-generic.lintian-overrides
vendored
Normal file
3
debian/linux-headers-6.12.33+deb13progress8-alpha-generic.lintian-overrides
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13progress8-alpha-generic: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13progress8-alpha-generic: unstripped-binary-or-object [usr/src/*/vmlinux]
|
7
debian/linux-headers-6.12.33+deb13progress8-alpha-generic.postinst
vendored
Normal file
7
debian/linux-headers-6.12.33+deb13progress8-alpha-generic.postinst
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13progress8-alpha-generic
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
3
debian/linux-headers-6.12.33+deb13progress8-alpha-smp.lintian-overrides
vendored
Normal file
3
debian/linux-headers-6.12.33+deb13progress8-alpha-smp.lintian-overrides
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13progress8-alpha-smp: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13progress8-alpha-smp: unstripped-binary-or-object [usr/src/*/vmlinux]
|
7
debian/linux-headers-6.12.33+deb13progress8-alpha-smp.postinst
vendored
Normal file
7
debian/linux-headers-6.12.33+deb13progress8-alpha-smp.postinst
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13progress8-alpha-smp
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
3
debian/linux-headers-6.12.33+deb13progress8-amd64.lintian-overrides
vendored
Normal file
3
debian/linux-headers-6.12.33+deb13progress8-amd64.lintian-overrides
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13progress8-amd64: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13progress8-amd64: unstripped-binary-or-object [usr/src/*/vmlinux]
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13-5kc-malta
|
||||
version=6.12.33+deb13progress8-amd64
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
4
debian/linux-headers-6.12.33+deb13progress8-arm64-16k.lintian-overrides
vendored
Normal file
4
debian/linux-headers-6.12.33+deb13progress8-arm64-16k.lintian-overrides
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
# This 'executable' file intentionally contains only BTF sections
|
||||
linux-headers-6.12.33+deb13progress8-arm64-16k: statically-linked-binary [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13progress8-arm64-16k: unstripped-binary-or-object [usr/src/*/vmlinux]
|
||||
linux-headers-6.12.33+deb13progress8-arm64-16k: shared-library-lacks-prerequisites [usr/src/*/vmlinux]
|
7
debian/linux-headers-6.12.33+deb13progress8-arm64-16k.postinst
vendored
Normal file
7
debian/linux-headers-6.12.33+deb13progress8-arm64-16k.postinst
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
version=6.12.33+deb13progress8-arm64-16k
|
||||
|
||||
linux-run-hooks headers postinst $version -- "$@"
|
||||
|
||||
exit 0
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue