Add the ability to transform Grub program names. For example, a user can easily launch

./configure --program-transform-name="s/grub/grub2/"

And the installed files (in this case for i386-pc) will be:

/usr/lib/grub2/i386-pc/*
/usr/local/sbin/grub2-emu
/usr/local/sbin/grub2-install
...etc

Also grub2-install place boot files in "/boot/grub2"

This allows easy integration into distributions as it allows grub2 to
sit side by side with a grub legacy install without.
This commit is contained in:
jerone 2007-04-10 21:38:26 +00:00
parent 6795c4e10b
commit 1d543c3ec0
5 changed files with 36 additions and 19 deletions

View file

@ -1,3 +1,11 @@
2007-04-10 Jerone Young <jerone@gmail.com>
* configure.ac: Add argument for autoconf to use tranformation
ability.
* Makefile.in: Add autoconf package transformation code.
* util/i386/pc/grub-install.in: Likewise.
* util/powerpc/ieee1275/grub-install.in: Likewise.
2007-03-19 Yoshinori K. Okuji <okuji@enbug.org>
* fs/ext2.c (EXT2_GOOD_OLD_REVISION): New macro.