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.
Make i386-* other than i386-pc compileable under cygwin.
- Loading branch information
Showing
7 changed files
with
51 additions
and
24 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,7 @@ | ||
2013-12-14 Vladimir Serbinenko <[email protected]> | ||
|
||
Make i386-* other than i386-pc compileable under cygwin. | ||
|
||
2013-12-14 Vladimir Serbinenko <[email protected]> | ||
|
||
Fix definition of grub_efi_hard_drive_device_path. Take care that | ||
|
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
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 |
---|---|---|
|
@@ -718,11 +718,14 @@ def kernel(defn, platform): | |
"""if test x$(TARGET_APPLE_LINKER) = x1; then \ | ||
$(TARGET_OBJCONV) -f$(TARGET_MODULE_FORMAT) -nr:_grub_mod_init:grub_mod_init -nr:_grub_mod_fini:grub_mod_fini -ed2022 -wd1106 -nu -nd $< $@; \ | ||
elif test ! -z '$(TARGET_OBJ2ELF)'; then \ | ||
cp $< [email protected]; $(TARGET_OBJ2ELF) $@.bin && cp [email protected] $@ || (rm -f $@.bin; exit 1); \ | ||
$(TARGET_OBJ2ELF) $< $@ || (rm -f $@; exit 1); \ | ||
else cp $< $@; fi""", | ||
"""if test x$(TARGET_APPLE_LINKER) = x1; then \ | ||
$(TARGET_STRIP) -S -x $(""" + cname(defn) + """) -o [email protected] $<; \ | ||
$(TARGET_OBJCONV) -f$(TARGET_MODULE_FORMAT) -nr:_grub_mod_init:grub_mod_init -nr:_grub_mod_fini:grub_mod_fini -ed2022 -ed2016 -wd1106 -nu -nd [email protected] $@; \ | ||
elif test ! -z '$(TARGET_OBJ2ELF)'; then \ | ||
""" + "$(TARGET_STRIP) $(" + cname(defn) + "_STRIPFLAGS) -o [email protected] $< && \ | ||
$(TARGET_OBJ2ELF) [email protected] $@ || (rm -f $@; rm -f [email protected]; exit 1); \ | ||
else """ + "$(TARGET_STRIP) $(" + cname(defn) + "_STRIPFLAGS) -o $@ $<; \ | ||
fi""")) | ||
|
||
|
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