Update of bug #44448 (project grub):

                Category:                Terminal => Filesystem             

    _______________________________________________________

Follow-up Comment #22:

If you are sure it worked in 2.02~beta2 then as I already told you the most
straightforward way to find out when it got broken is git bisect
(http://git-scm.com/docs/git-bisect)

I recommend building in clean separate directory every time

git bisect start
git bisect bad
git bisect good 2.02~beta2

and then in a loop

rm -rf build
mkdir build
git archive HEAD | tar -xf - -C build
cd build
./autogen.sh
./configure
make
test
cd ..
git bisect {bad|good}
repeat

But test 2.02~beta2 first to make sure it really works. I am a bit surprised
it does, as your output shows hole_birth and embedded_data features and they
were missing in 2.02~beta2.

The same git bisect applies to grub-install problem by the way. I checked and
the only difference between 2.02~beta2 and current master in util/setup.c are
trivial cleanups. So something else must have changed.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?44448>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/


_______________________________________________
Bug-grub mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-grub

Reply via email to