mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
* Reduce the i2c frequency to enable the encryption chip to be recognized * Add USB xr Serial driver and init gps uart param * Factory reset when switching wifi mode * SFP gpio should be input mode Fixes: WIFI-14789 Signed-off-by: Justin.Guo <guoxijun@actiontec.com>
30 lines
585 B
Makefile
30 lines
585 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=cig-device-boot
|
|
PKG_RELEASE:=1
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/cig-device-boot
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+kmod-usb-serial-xr
|
|
TITLE:=CIG device init
|
|
endef
|
|
|
|
define Package/cig-device-boot/description
|
|
Initialize particular functions of the CIG device
|
|
endef
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
define Package/cig-device-boot/install
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/cig-device.init $(1)/etc/init.d/cig-device-boot
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,cig-device-boot))
|