autocore-arm: add ipq40xx support

This commit is contained in:
CN_SZTL 2020-07-28 03:00:36 +08:00
parent 944c0c6bb6
commit ac394d4d1d
No known key found for this signature in database
GPG Key ID: 6850B6345C862176
3 changed files with 16 additions and 3 deletions

View File

@ -16,7 +16,7 @@ include $(INCLUDE_DIR)/package.mk
define Package/autocore-arm
TITLE:=ARM auto core script.
MAINTAINER:=CN_SZTL
DEPENDS:=@(TARGET_bcm27xx||TARGET_ipq806x||TARGET_rockchip)
DEPENDS:=@(TARGET_bcm27xx||TARGET_ipq40xx||TARGET_ipq806x||TARGET_rockchip) +TARGET_ipq40xx:lm-sensors
VARIANT:=arm
endef
@ -46,7 +46,11 @@ define Package/autocore-arm/install
$(INSTALL_DIR) $(1)/etc/uci-defaults
$(INSTALL_BIN) ./files/arm/090-cover-index_files $(1)/etc/uci-defaults/090-cover-index_files
$(INSTALL_DIR) $(1)/sbin
ifneq ($(BOARD),ipq40xx)
$(INSTALL_BIN) ./files/arm/cpuinfo $(1)/sbin/cpuinfo
else
$(INSTALL_BIN) ./files/arm/cpuinfo-ipq40xx $(1)/sbin/cpuinfo
endif
endef
define Package/autocore-x86/install

View File

@ -0,0 +1,9 @@
#!/bin/sh
cpu_arch="$(cat "/proc/cpuinfo" | grep "model name" | sed -n "1p" | awk -F ': ' '{print $2}')"
cpu_cores="$(cat "/proc/cpuinfo" | grep "processor" | wc -l)"
cpu_freq="$(expr $(cat /sys/devices/system/cpu/cpufreq/policy0/cpuinfo_cur_freq) / 1000)MHz"
sys_temp="$(sensors | grep -Eo '\+[0-9]+.+C' | sed ':a;N;$!ba;s/\n/ /g;s/+//g')"
echo -n "${cpu_arch} x ${cpu_cores} (${cpu_freq}, ${sys_temp})"

View File

@ -19,7 +19,7 @@ DEFAULT_PACKAGES += \
kmod-leds-gpio kmod-gpio-button-hotplug swconfig \
kmod-ath10k-ct wpad-openssl \
kmod-usb3 kmod-usb-dwc3 ath10k-firmware-qca4019-ct \
automount \
ca-certificates htop fdisk e2fsprogs
autocore-arm automount luci-app-cpufreq \
ca-certificates htop fdisk e2fsprogs ethtool
$(eval $(call BuildTarget))