Skip to content

Commit

Permalink
don't use arm-linux-gnueabihf binaries for rpi0 platform (fixes #2888).
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-maus committed Nov 4, 2024
1 parent 1841f54 commit 7517b05
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions buildroot-external/package/occu/occu.mk
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ endif

ifeq ($(BR2_arm),y)
OCCU_COMMON=arm-gnueabihf-gcc8
OCCU_ARCH32=arm-linux-gnueabihf
ifeq (,$(findstring rpi0,$(PRODUCT)))
OCCU_ARCH32=
else
OCCU_ARCH32=arm-linux-gnueabihf
endif
OCCU_ARCH64=
OCCU_LIB32=lib
OCCU_LIB64=
Expand Down Expand Up @@ -138,7 +142,8 @@ ifeq ($(BR2_x86_64),y)
endif

define OCCU_INSTALL_TARGET_CMDS
$(MAKE) OCCU_RF_PROTOCOL=$(OCCU_RF_PROTOCOL) \
$(MAKE) PRODUCT=$(PRODUCT) \
OCCU_RF_PROTOCOL=$(OCCU_RF_PROTOCOL) \
OCCU_COMMON=$(OCCU_COMMON) \
OCCU_ARCH32=$(OCCU_ARCH32) \
OCCU_ARCH64=$(OCCU_ARCH64) \
Expand Down

0 comments on commit 7517b05

Please sign in to comment.