Re: [PATCH 3/4] travis: Remove mips builds

2020-09-22 Thread Petr Vorel
> On Wed, Sep 09, 2020 at 10:02:20PM +0200, Petr Vorel wrote: > > Remove mips builds fix configure error: > > configure: error: could not force big-endian) > Could you try to fix mips and risc5 builds instead of removing them? mips fails due using compiler [1] which lacks lacks big-endian support:

Re: [PATCH 4/4] travis: Remove riscv32 build

2020-09-22 Thread Petr Vorel
Hi Daniel, > To fix travis error: > grub-mkimage: error: target 1036 not reachable from pc=ba. https://travis-ci.org/github/pevik/grub/jobs/729143844 $ for target in $GRUB_TARGETS; do grub-mkimage -c grub.cfg -p / -O $target -o grub-$target echo reboot normal; done grub-mkimage: error: target 10

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=$(