mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-30 22:36:58 +08:00

* autocore: add cpu freq & temp display for some arm devices Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org> Co-authored-by: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com> * Revert "show CPU Temperature for NanoPi R2S (#5612)" This reverts commit 099439f051a8b2393554eb26cec2df074f653fae. Co-authored-by: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com>
27 lines
665 B
Makefile
27 lines
665 B
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
BOARD:=rockchip
|
|
BOARDNAME:=Rockchip
|
|
FEATURES:=ext4 audio usb usbgadget display gpio fpu rootfs-part boot-part squashfs
|
|
SUBTARGETS:=armv8
|
|
|
|
KERNEL_PATCHVER=5.4
|
|
|
|
define Target/Description
|
|
Build firmware image for Rockchip SoC devices.
|
|
endef
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += uboot-envtools partx-utils e2fsprogs mkf2fs kmod-gpio-button-hotplug \
|
|
autocore-arm automount fdisk e2fsprogs ethtool haveged htop lm-sensors \
|
|
luci-app-zerotier
|
|
|
|
KERNELNAME:=Image dtbs
|
|
|
|
$(eval $(call BuildTarget))
|