Skip to content

Commit

Permalink
change kernel package target to all architecture
Browse files Browse the repository at this point in the history
Signed-off-by: stephen <stephen@vamrs.com>
  • Loading branch information
StephenInVamrs committed Dec 8, 2018
1 parent 209c242 commit aad28c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/package/builddeb
Expand Up @@ -50,16 +50,16 @@ set_debarch() {
mips*)
debarch=mips$(grep -q CPU_LITTLE_ENDIAN=y $KCONFIG_CONFIG && echo el || true) ;;
arm64)
debarch=arm64 ;;
debarch=all ;;
arm*)
if grep -q CONFIG_AEABI=y $KCONFIG_CONFIG; then
if grep -q CONFIG_VFP=y $KCONFIG_CONFIG; then
debarch=armhf
debarch=all
else
debarch=armel
debarch=all
fi
else
debarch=arm
debarch=all
fi
;;
*)
Expand Down

0 comments on commit aad28c8

Please sign in to comment.