mirror of
https://github.com/nikdoof/builder.git
synced 2025-12-13 15:42:20 +00:00
* Add JVS INGT10 GQS60EP T10A+OV9750 * move ov9750 config and calibration file to firmware repo * move ov9750 config and calibration file to firmware repo
26 lines
912 B
Makefile
26 lines
912 B
Makefile
################################################################################
|
|
#
|
|
# ingenic-osdrv-t20
|
|
#
|
|
################################################################################
|
|
|
|
INGENIC_OSDRV_T20_VERSION =
|
|
INGENIC_OSDRV_T20_SITE =
|
|
INGENIC_OSDRV_T20_LICENSE = MIT
|
|
INGENIC_OSDRV_T20_LICENSE_FILES = LICENSE
|
|
|
|
define INGENIC_OSDRV_T20_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 -d $(TARGET_DIR)/etc/sensor
|
|
$(INSTALL) -m 644 -t $(TARGET_DIR)/etc/sensor $(INGENIC_OSDRV_T20_PKGDIR)/files/sensor/*.yaml
|
|
|
|
$(INSTALL) -m 644 -t $(TARGET_DIR)/etc/sensor $(INGENIC_OSDRV_T20_PKGDIR)/files/sensor/params/ov9750.bin
|
|
|
|
$(INSTALL) -m 755 -d $(TARGET_DIR)/usr/bin
|
|
$(INSTALL) -m 755 -t $(TARGET_DIR)/usr/bin $(INGENIC_OSDRV_T20_PKGDIR)/files/script/load*
|
|
|
|
$(INSTALL) -m 755 -d $(TARGET_DIR)/usr/lib
|
|
$(INSTALL) -m 644 -t $(TARGET_DIR)/usr/lib/ $(INGENIC_OSDRV_T20_PKGDIR)/files/lib/*.so
|
|
endef
|
|
|
|
$(eval $(generic-package))
|