From 0f9db42950429ab19c53609bc5a25538aadbbfd3 Mon Sep 17 00:00:00 2001 From: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com> Date: Fri, 29 May 2020 12:06:23 +0800 Subject: [PATCH] baidupcs-web: correct download for arm (#4695) --- package/lean/baidupcs-web/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/lean/baidupcs-web/Makefile b/package/lean/baidupcs-web/Makefile index f27cf00285..a0fe471825 100644 --- a/package/lean/baidupcs-web/Makefile +++ b/package/lean/baidupcs-web/Makefile @@ -46,7 +46,13 @@ ifeq ($(ARCH),mips) endif ifeq ($(ARCH),arm) - PKG_ARCH_BAIDUPCS-WEB:=arm +ifeq ($(BOARD),bcm53xx) + PKG_ARCH_BAIDUPCS-WEB:=armv5 +else ifeq ($(BOARD),kirkwood) + PKG_ARCH_BAIDUPCS-WEB:=armv5 +else + PKG_ARCH_BAIDUPCS-WEB:=armv7 +endif endif ifeq ($(ARCH),aarch64)