forked from tsoome/grub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a new "none" platform that only builds utilities
This makes it possible to build generally-useful utilities such as grub-mount even if the rest of GRUB has not been ported to the target CPU. * configure.ac: Add "none" platform. Default to it for unsupported CPUs rather than stopping with a fatal error. Don't downgrade x86_64-none to i386. Define COND_real_platform Automake conditional if the platform is anything other than "none". Don't do any include directory linking for "none". * Makefile.am: Skip building grub-core and all bootcheck targets if !COND_real_platform. * include/grub/time.h: Don't include <grub/cpu/time.h> if GRUB_UTIL is defined.
- Loading branch information
Showing
4 changed files
with
55 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
2014-09-23 Colin Watson <[email protected]> | ||
|
||
Add a new "none" platform that only builds utilities | ||
|
||
* configure.ac: Add "none" platform. Default to it for unsupported | ||
CPUs rather than stopping with a fatal error. Don't downgrade | ||
x86_64-none to i386. Define COND_real_platform Automake conditional | ||
if the platform is anything other than "none". Don't do any include | ||
directory linking for "none". | ||
* Makefile.am: Skip building grub-core and all bootcheck targets if | ||
!COND_real_platform. | ||
* include/grub/time.h: Don't include <grub/cpu/time.h> if GRUB_UTIL | ||
is defined. | ||
|
||
2014-09-22 Andrei Borzenkov <[email protected]> | ||
|
||
Use grub_cpu_to_XXX_compile_time for constants. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters