Sigmastar: adjust sensor driver path

pull/1440/head
viktorxda 2024-05-10 19:47:46 +02:00
parent 927818bdcb
commit 914bded9c2
5 changed files with 6 additions and 6 deletions

View File

@ -46,7 +46,7 @@ insert_ko() {
insmod $MODULE/mi_venc.ko
}
if [ ! -e /sys/module/mhal ]; then
if [ ! -e /sys/module/mi_common ]; then
insert_ko
fi

View File

@ -49,7 +49,7 @@ insert_ko() {
echo isproot /etc/firmware > /dev/ispmid
}
if [ ! -e /sys/module/mhal ]; then
if [ ! -e /sys/module/mi_common ]; then
insert_ko
fi

View File

@ -41,7 +41,7 @@ insert_ko() {
echo isproot /etc/firmware > /dev/ispmid
}
if [ ! -e /sys/module/mhal ]; then
if [ ! -e /sys/module/mi_common ]; then
insert_ko
fi

View File

@ -48,7 +48,7 @@ insert_ko() {
echo isproot /etc/firmware > /dev/ispmid
}
if [ ! -e /sys/module/mhal ]; then
if [ ! -e /sys/module/mi_common ]; then
insert_ko
fi

View File

@ -8,8 +8,8 @@ SIGMASTAR_OSDRV_SENSORS_SITE = $(call github,openipc,sensors,$(SIGMASTAR_OSDRV_S
SIGMASTAR_OSDRV_SENSORS_VERSION = HEAD
define SIGMASTAR_OSDRV_SENSORS_INSTALL_TARGET_CMDS
$(INSTALL) -m 755 -d $(TARGET_DIR)/lib/modules/4.9.84/sigmastar
$(INSTALL) -m 644 -t $(TARGET_DIR)/lib/modules/4.9.84/sigmastar $(@D)/sigmastar/$(OPENIPC_SOC_FAMILY)/*
$(INSTALL) -m 755 -d $(TARGET_DIR)/lib/modules/$(LINUX_VERSION_PROBED)/sigmastar
$(INSTALL) -m 644 -t $(TARGET_DIR)/lib/modules/$(LINUX_VERSION_PROBED)/sigmastar $(@D)/sigmastar/$(OPENIPC_SOC_FAMILY)/*
endef
$(eval $(generic-package))