Skip to content

Commit

Permalink
builddeb: Add automatic support for sparc64 architecture
Browse files Browse the repository at this point in the history
We currently label 64-bit kernel packages as sparc (32-bit), mostly
because it was officially supported while sparc64 was not.  Now
neither is officially supported, so label these packages as sparc64.

Signed-off-by: Ben Hutchings <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
bwhacks authored and masahir0y committed Jul 28, 2018
1 parent 679caaf commit a27ae28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/package/mkdebian
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set_debarch() {
x86_64)
debarch=amd64 ;;
sparc*)
debarch=sparc ;;
debarch=sparc$(if_enabled_echo 64BIT 64) ;;
s390*)
debarch=s390x ;;
ppc*)
Expand Down

0 comments on commit a27ae28

Please sign in to comment.