aboutsummaryrefslogtreecommitdiffstats
path: root/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard
diff options
context:
space:
mode:
Diffstat (limited to 'packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard')
-rw-r--r--packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest9
-rw-r--r--packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postinst10
-rw-r--r--packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postrm8
3 files changed, 27 insertions, 0 deletions
diff --git a/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest b/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest
new file mode 100644
index 000000000000..9fcdb2992e51
--- /dev/null
+++ b/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest
@@ -0,0 +1,9 @@
+PV = 5.15.108+gitAUTOINC+e4b95ec172_9d140dbc31
+PR = r0
+PKGV = 5.15.108+git0+e4b95ec172_9d140dbc31
+RPROVIDES = kernel-module-dma-example
+RDEPENDS = kernel-5.15.108-yocto-standard
+RRECOMMENDS =
+PKGSIZE = 6784
+FILES = /lib/modules/5.15.108-yocto-standard/kernel/samples/kfifo/.debug/dma-example.ko /etc/modules-load.d/dma-example.conf /etc/modprobe.d/dma-example.conf /lib/modules/5.15.108-yocto-standard/kernel/samples/kfifo/dma-example.ko /etc/modules-load.d/dma-example.conf /etc/modprobe.d/dma-example.conf
+FILELIST = /lib/modules/5.15.108-yocto-standard/kernel/samples/kfifo/dma-example.ko
diff --git a/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postinst b/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postinst
new file mode 100644
index 000000000000..6318d83fd6bf
--- /dev/null
+++ b/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postinst
@@ -0,0 +1,10 @@
+#!/bin/sh
+set -e
+if [ -z "$D" ]; then
+ depmod -a 5.15.108-yocto-standard
+else
+ # image.bbclass will call depmodwrapper after everything is installed,
+ # no need to do it here as well
+ :
+fi
+
diff --git a/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postrm b/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postrm
new file mode 100644
index 000000000000..a5cdcba8d298
--- /dev/null
+++ b/packages/qemuarm64-poky-linux/linux-yocto/kernel-module-dma-example-5.15.108-yocto-standard/latest.pkg_postrm
@@ -0,0 +1,8 @@
+#!/bin/sh
+set -e
+if [ -z "$D" ]; then
+ depmod -a 5.15.108-yocto-standard
+else
+ depmodwrapper -a -b $D 5.15.108-yocto-standard kernel
+fi
+