mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-06 20:02:18 +00:00
fab6a6501c
* Update ipu6-camera-hal.spec
* Create update.rhai
* Bump commit?
* Nightly for date function
* Cursed
* Update ipu6-camera-hal.spec
* fix: Install and build
* fix: Ifcond typo
* Add myself as packager I guess
* fix: Whoops
* I am becoming the Joker
* Not taking anymore chances this is so annoying
* fix: Drop old lib file
* fix: Finally fully drop hal_adapter (thank God)
---------
(cherry picked from commit aafe2ed488)
Signed-off-by: Gilver <rockgrub@disroot.org>
Co-authored-by: Gilver <rockgrub@disroot.org>
29 lines
916 B
Plaintext
29 lines
916 B
Plaintext
# Tiger Lake
|
|
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0x9a19", GOTO="ipu6_tgl"
|
|
# Alder Lake-N
|
|
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0x465d", GOTO="ipu6_adl"
|
|
# Alder Lake-P
|
|
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0x462e", GOTO="ipu6_adl"
|
|
# Raptor Lake-P
|
|
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0xa75d", GOTO="ipu6_adl"
|
|
# Meteor Lake
|
|
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0x7d19", GOTO="ipu6_mtl"
|
|
|
|
GOTO="ipu6_end"
|
|
|
|
LABEL="ipu6_tgl"
|
|
RUN+="/bin/ln -sf /usr/share/defaults/etc/camera/ipu6/v4l2-relayd /run/v4l2-relayd"
|
|
GOTO="ipu6_end"
|
|
|
|
LABEL="ipu6_adl"
|
|
RUN+="/bin/ln -sf /usr/share/defaults/etc/camera/ipu6ep/v4l2-relayd /run/v4l2-relayd"
|
|
GOTO="ipu6_end"
|
|
|
|
LABEL="ipu6_mtl"
|
|
RUN+="/bin/ln -sf /usr/share/defaults/etc/camera/ipu6epmtl/v4l2-relayd /run/v4l2-relayd"
|
|
GOTO="ipu6_end"
|
|
|
|
LABEL="ipu6_end"
|
|
|
|
KERNEL=="ipu-psys0", TAG+="uaccess"
|