wok-current view linux-video/receipt @ rev 25667

Up kernel to 5.10.210 and aufs5
author Stanislas Leduc <shann@slitaz.org>
date Sat Mar 02 17:27:56 2024 +0000 (3 months ago)
parents a5920dcf0199
children db14014acdba
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-video"
4 VERSION="5.10.210"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel video modules."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="https://www.kernel.org/"
13 # Modules paths and list
14 MOD_PATH="lib/modules/$VERSION-slitaz/kernel"
15 MODULES="drivers/video/backlight"
17 # Rules to gen a SliTaz package suitable for Tazpkg.
18 genpkg_rules()
19 {
20 mkdir -p ${fs}/${MOD_PATH}
21 for module in $MODULES
22 do
23 dir=$MOD_PATH/$(dirname $module)
24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
25 cp -a $install/$MOD_PATH/$module $fs/$dir
26 done
27 }
29 # Post install/remove commands for Tazpkg.
30 post_install()
31 {
32 chroot "$root/" depmod -a $VERSION-slitaz
33 }
35 post_remove()
36 {
37 chroot "$root/" depmod -a $VERSION-slitaz
38 }