Message ID | 1397307186-3977-2-git-send-email-fathi.boudra@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sat, 2014-04-12 at 15:53 +0300, Fathi Boudra wrote: > Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Reviewed-by: Ben Hutchings <ben@decadent.org.uk> > --- > scripts/package/builddeb | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/scripts/package/builddeb b/scripts/package/builddeb > index f46e4dd..0bf29a6 100644 > --- a/scripts/package/builddeb > +++ b/scripts/package/builddeb > @@ -42,6 +42,8 @@ create_package() { > debarch=hppa ;; > mips*) > debarch=mips$(grep -q CPU_LITTLE_ENDIAN=y $KCONFIG_CONFIG && echo el || true) ;; > + arm64) > + debarch=arm64 ;; > arm*) > debarch=arm$(grep -q CONFIG_AEABI=y $KCONFIG_CONFIG && echo el || true) ;; > *)
On 2014-04-13 15:26, Ben Hutchings wrote: > On Sat, 2014-04-12 at 15:53 +0300, Fathi Boudra wrote: >> Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> > > Reviewed-by: Ben Hutchings <ben@decadent.org.uk> Applied to kbuild.git#misc, thanks. Michal -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Sun, 2014-04-13 at 14:26 +0100, Ben Hutchings wrote: > On Sat, 2014-04-12 at 15:53 +0300, Fathi Boudra wrote: > > Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> > > Reviewed-by: Ben Hutchings <ben@decadent.org.uk> > > > --- > > scripts/package/builddeb | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/scripts/package/builddeb b/scripts/package/builddeb > > index f46e4dd..0bf29a6 100644 > > --- a/scripts/package/builddeb > > +++ b/scripts/package/builddeb > > @@ -42,6 +42,8 @@ create_package() { > > debarch=hppa ;; > > mips*) > > debarch=mips$(grep -q CPU_LITTLE_ENDIAN=y $KCONFIG_CONFIG && echo el || true) ;; > > + arm64) Now I'm not so sure. As we are comparing with the 'machine' name ($UTS_MACHINE, not $ARCH or $SRCARCH), shouldn't this actually check for aarch64? Ben. > > + debarch=arm64 ;; > > arm*) > > debarch=arm$(grep -q CONFIG_AEABI=y $KCONFIG_CONFIG && echo el || true) ;; > > *) >
diff --git a/scripts/package/builddeb b/scripts/package/builddeb index f46e4dd..0bf29a6 100644 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -42,6 +42,8 @@ create_package() { debarch=hppa ;; mips*) debarch=mips$(grep -q CPU_LITTLE_ENDIAN=y $KCONFIG_CONFIG && echo el || true) ;; + arm64) + debarch=arm64 ;; arm*) debarch=arm$(grep -q CONFIG_AEABI=y $KCONFIG_CONFIG && echo el || true) ;; *)
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> --- scripts/package/builddeb | 2 ++ 1 file changed, 2 insertions(+)