wok-current view linux-netfilter/receipt @ rev 25697

Up apache (CVE-2023-38709, CVE-2024-24795, CVE-2024-27316), up libarchive, qemu, add amdgpu/touchpad support and clean modules.list, up website for repology
author Stanislas Leduc <shann@slitaz.org>
date Tue Apr 16 17:00:21 2024 +0000 (4 weeks ago)
parents db14014acdba
children
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-netfilter"
4 VERSION="5.10.215"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel netfilter modules."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="https://www.kernel.org/"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 local path
17 path=lib/modules/$VERSION-slitaz/kernel
18 mkdir -p $fs/$path
20 export src install
22 $wanted_stuff/list_modules.sh net/netfilter net/ipv4/netfilter net/8021q | \
23 while read module; do
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $install/$path/$module $fs/$dir
27 done
28 rm -rf $fs/$path/net/ipv6 2> /dev/null
30 for i in $(cat $wanted_stuff/modules.list); do
31 if [ -f $fs/$path/$i ]; then
32 rm -f $fs/$path/$i
33 fi
34 done
36 # Workaround for nf_defrag_ipv4 / nf_reject_ipv4
37 cp -a $install/$path/net/ipv4/netfilter/nf_defrag_ipv4.ko.xz $fs/$path/net/ipv4/netfilter/
38 cp -a $install/$path/net/ipv4/netfilter/nf_reject_ipv4.ko.xz $fs/$path/net/ipv4/netfilter/
39 }
41 # Post install/remove commands for Tazpkg.
42 post_install()
43 {
44 chroot "$root/" depmod -a $VERSION-slitaz
45 }
47 post_remove()
48 {
49 chroot "$root/" depmod -a $VERSION-slitaz
50 }