Re: [PATCH 2/4] travis: Fix sparc64 build

2020-09-22 Thread Petr Vorel
Hi Daniel, ... > > ># Build all selected GRUB targets. > > >- for target in $GRUB_TARGETS; do > > > - plat=${target#*-}; > > > - arch=${target%-*}; > > > + arch=$(echo $target | cut -d- -f1); > > > + plat=$(echo $target | cut -d- -f2); > > I think it should be: plat=$(

Re: [PATCH 2/4] travis: Fix sparc64 build

2020-09-21 Thread Petr Vorel
Hi Daniel, thanks for merging first commit. > On Wed, Sep 09, 2020 at 10:02:19PM +0200, Petr Vorel wrote: > > Instead non-existing sparc64-ieee1275 format use all 3 sparc64 formats: > > sparc64-ieee1275-{aout,cdcore,raw}. > > Signed-off-by: Petr Vorel > > --- > > .travis.yml | 6 +++--- > > 1

Re: [PATCH 2/4] travis: Fix sparc64 build

2020-09-17 Thread Daniel Kiper
On Wed, Sep 09, 2020 at 10:02:19PM +0200, Petr Vorel wrote: > Instead non-existing sparc64-ieee1275 format use all 3 sparc64 formats: > sparc64-ieee1275-{aout,cdcore,raw}. > > Signed-off-by: Petr Vorel > --- > .travis.yml | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --gi

[PATCH 2/4] travis: Fix sparc64 build

2020-09-09 Thread Petr Vorel
Instead non-existing sparc64-ieee1275 format use all 3 sparc64 formats: sparc64-ieee1275-{aout,cdcore,raw}. Signed-off-by: Petr Vorel --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4bd05a30a..d019a0172 100644 --- a/.travi