# # Copyright (C) 2010-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=my-autocore PKG_VERSION:=1 PKG_RELEASE:=29 include $(INCLUDE_DIR)/package.mk define Package/my-autocore-arm SECTION:=libs CATEGORY:=Libraries TITLE:=ARM auto core script. MAINTAINER:=CN_SZTL DEPENDS:=@(arm||aarch64) \ +TARGET_bcm27xx:bcm27xx-userland \ +TARGET_bcm53xx:nvram \ +ethtool VARIANT:=arm endef define Package/my-autocore-x86 SECTION:=libs CATEGORY:=Libraries TITLE:=x86/x64 auto core loadbalance script. MAINTAINER:=Lean / CN_SZTL DEPENDS:=@TARGET_x86 +bc +lm-sensors +ethtool VARIANT:=x86 endef define Package/my-autocore-arm/description Display more details info about the devices in LuCI. endef define Download/armcpuinfo URL:=https://raw.githubusercontent.com/immortalwrt/immortalwrt/master/package/emortal/autocore/files/arm URL_FILE:=cpuinfo FILE:=cpuinfo HASH:=skip endef define Build/Prepare sed -i 's/cpu_arch="?"/cpu_arch="ARMv8 Processor"/' $(DL_DIR)/cpuinfo endef define Build/Compile endef define Package/my-autocore-arm/install $(INSTALL_DIR) $(1)/sbin $(INSTALL_BIN) $(DL_DIR)/cpuinfo $(1)/sbin/cpuinfo $(INSTALL_BIN) ./files/common/ethinfo $(1)/sbin/ethinfo $(INSTALL_DIR) $(1)/www/luci-static/resources/view/status/include $(INSTALL_DATA) ./files/common/29_eth.js $(1)/www/luci-static/resources/view/status/include/ $(INSTALL_DIR) $(1)/usr/lib/lua/luci/view/admin_status/index $(INSTALL_DATA) ./files/common/disc_status.htm $(1)/usr/lib/lua/luci/view/admin_status/index/ endef define Package/my-autocore-x86/install $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/x86/autocore $(1)/etc/init.d/autocore $(INSTALL_DIR) $(1)/sbin $(INSTALL_BIN) ./files/x86/cpuinfo $(1)/sbin/cpuinfo $(INSTALL_BIN) ./files/common/ethinfo $(1)/sbin/ethinfo $(INSTALL_DIR) $(1)/www/luci-static/resources/view/status/include $(INSTALL_DATA) ./files/common/29_eth.js $(1)/www/luci-static/resources/view/status/include/ $(INSTALL_DIR) $(1)/usr/lib/lua/luci/view/admin_status/index/ $(INSTALL_DATA) ./files/x86/nvme_status.htm $(1)/usr/lib/lua/luci/view/admin_status/index/ $(INSTALL_DIR) $(1)/usr/lib/lua/luci/view/admin_status/index $(INSTALL_DATA) ./files/common/disc_status.htm $(1)/usr/lib/lua/luci/view/admin_status/index/ endef $(eval $(call Download,armcpuinfo)) $(eval $(call BuildPackage,my-autocore-arm)) $(eval $(call BuildPackage,my-autocore-x86))