wok-current view linux-pae-wireless/receipt @ rev 25787
Adjust minimal kernel version for glibc
| author | Stanislas Leduc <shann@slitaz.org> | 
|---|---|
| date | Tue Jul 29 18:07:04 2025 +0000 (3 months ago) | 
| parents | d7c9e4ccdec8 | 
| children | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="linux-pae-wireless"
     4 VERSION="5.10.238"
     5 CATEGORY="base-system"
     6 SHORT_DESC="The Linux kernel wireless modules."
     7 MAINTAINER="devel@slitaz.org"
     8 LICENSE="GPL2"
     9 WANTED="linux"
    10 PROVIDE="linux-wireless:linux-pae"
    11 WEB_SITE="https://www.kernel.org/"
    12 DEPENDS="linux-pae-crypto wireless_tools"
    14 # Rules to gen a SliTaz package suitable for Tazpkg.
    15 genpkg_rules()
    16 {
    17     local path
    18     src=$WOK/linux-pae/source/tmp
    19     install=$install/linux-pae
    20     path=lib/modules/$VERSION-slitaz-pae/kernel
    21     mkdir -p $fs/$path
    23     export src
    24     export install
    26     $wanted_stuff/list_modules.sh drivers/net/wireless drivers/staging/wlan-ng \
    27     drivers/misc/echo drivers/leds net/wireless net/mac80211 \
    28     drivers/staging/rtl8188eu/r8188eu.ko.xz drivers/staging/rtl8192u/r8192u_usb.ko.xz \
    29     drivers/staging/rtl8712/r8712u.ko.xz | while read module; do
    30     	dir=$path/$(dirname $module)
    31     	[ -d $fs/$dir ] || mkdir -p $fs/$dir
    32         cp -a $install/$path/$module $fs/$dir
    33     done
    35     for i in $(cat $wanted_stuff/modules.list); do
    36         if [ -f $fs/$path/$i ]; then
    37 	    rm -f $fs/$path/$i
    38 	fi
    39     done
    41     # Workaround for cfg80211
    42     cp -a $install/$path/net/wireless/cfg80211.ko.xz $fs/$path/net/wireless/
    43 }
    45 # Post install/remove commands for Tazpkg.
    46 post_install()
    47 {
    48 	chroot "$root/" depmod -a $VERSION-slitaz-pae
    49 }
    51 post_remove()
    52 {
    53 	chroot "$root/" depmod -a $VERSION-slitaz-pae
    54 }