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