wok-current annotate linux-pae-drm/receipt @ rev 25695

Up linux 5.10.214, Patch xorg-server (CVE-2024-31080, CVE-2024-31081, CVE-2024-31082, CVE-2024-31083)
author Stanislas Leduc <shann@slitaz.org>
date Thu Apr 04 08:53:51 2024 +0000 (2 months ago)
parents 8e3f5f4438f1
children bf7fc7b1447c
rev   line source
shann@25634 1 # SliTaz package receipt.
shann@25634 2
shann@25634 3 PACKAGE="linux-pae-drm"
shann@25695 4 VERSION="5.10.214"
shann@25634 5 CATEGORY="base-system"
shann@25634 6 SHORT_DESC="The Linux kernel drm module."
shann@25634 7 MAINTAINER="devel@slitaz.org"
shann@25634 8 LICENSE="GPL2"
shann@25634 9 DEPENDS="linux-pae-agp"
shann@25634 10 WANTED="linux"
shann@25634 11 PROVIDE="linux-drm:linux-pae"
shann@25634 12 WEB_SITE="https://www.kernel.org/"
shann@25634 13
shann@25634 14 # Rules to gen a SliTaz package suitable for Tazpkg.
shann@25634 15 genpkg_rules()
shann@25634 16 {
shann@25634 17 local path
shann@25634 18 src=$WOK/linux-pae/source/tmp
shann@25634 19 install=$install/linux-pae
shann@25634 20 path=lib/modules/$VERSION-slitaz-pae/kernel
shann@25634 21 mkdir -p $fs/$path
shann@25634 22 export src
shann@25634 23 export install
shann@25634 24 $wanted_stuff/list_modules.sh drivers/gpu/drm | while read module; do
shann@25634 25 dir=$path/$(dirname $module)
shann@25634 26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
shann@25634 27 cp -a $install/$path/$module $fs/$dir
shann@25634 28 done
shann@25634 29
shann@25634 30 for i in $(cat $wanted_stuff/modules.list); do
shann@25634 31 if [ -f $fs/$path/$i ]; then
shann@25634 32 rm -f $fs/$path/$i
shann@25634 33 fi
shann@25634 34 done
shann@25634 35
shann@25634 36 # remove drivers/char/agp kernel modules cause there in linux-agp package
shann@25634 37 if [ -d $fs/$path/drivers/char/agp ]; then
shann@25634 38 rm -rf $fs/$path/drivers/char/agp
shann@25634 39 fi
shann@25634 40 }
shann@25634 41
shann@25634 42 # Post install/remove commands for Tazpkg.
shann@25634 43 post_install()
shann@25634 44 {
shann@25634 45 chroot "$root/" depmod -a $VERSION-slitaz-pae
shann@25634 46 }
shann@25634 47
shann@25634 48 post_remove()
shann@25634 49 {
shann@25634 50 chroot "$root/" depmod -a $VERSION-slitaz-pae
shann@25634 51 }
shann@25634 52