ChangeLog 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. 2013-05-02 Nigel Croxon <nigel.croxon@hp.com>
  2. * Chnage from Matt Fleming <matt.fleming@intel.com>
  3. - Preparation for adding the networking protocol definitions.
  4. Add the service binding protocol.
  5. 2013-02-21 Nigel Croxon <nigel.croxon@hp.com>
  6. * Change from Peter Jones <pjones@redhat.com>
  7. - Previously we were incorrectly passing 3 functions with
  8. the System V ABI to UEFI functions as EFI ABI functions.
  9. Mark them as EFIAPI so the compiler will (in our new
  10. GNU_EFI_USE_MS_ABI world) use the correct ABI.
  11. - These need to be EFIAPI functions because in some cases
  12. they call ST->ConOut->OutputString(), which is an EFIAPI
  13. function. (Which means that previously in cases that
  14. needed "cdecl", these didn't work right.)
  15. - If the compiler version is new enough, and GNU_EFI_USE_MS_ABI
  16. is defined, use the function attribute ms_abi on everything
  17. defined with "EFIAPI". Such calls will no longer go through
  18. efi_call*, and as such will be properly type-checked.
  19. - Honor PREFIX and LIBDIR correctly when passed in during the build.
  20. - Add machine type defines for i386, arm/thumb, ia64, ebc, x86_64.
  21. - __STDC_VERSION__ never actually gets defined unless there's a
  22. --std=... line. So we were accidentally defining lots of c99
  23. types ourself. Since it's 2012, use --std=c11 where appropriate,
  24. and if it's defined and we're using gcc, actually include gcc's
  25. stdint definitions.
  26. - New test application added: route80h. This is a test program
  27. for PciIo. It routes ioport 80h on ICH10 to PCI. This is also
  28. useful on a very limited set of hardware to enable use of
  29. a port 80h debug card.
  30. - New test applcation added: modelist. This lists video modes
  31. the GOP driver is showing us.
  32. * Change from Finnbarr Murphy
  33. - https://sourceforge.net/p/gnu-efi/feature-requests/2/
  34. Please add the following status codes to <efierr.h>
  35. EFI_INCOMPATIBLE_VERSION 25
  36. EFI_SECURITY_VIOLATION 26
  37. EFI_CRC_ERROR 27
  38. EFI_END_OF_MEDIA 28
  39. EFI_END_OF_FILE 31
  40. EFI_INVALID_LANGUAGE 32
  41. EFI_COMPROMISED_DATA 33
  42. * Change from SourceForge.net Bug report
  43. - https://sourceforge.net/p/gnu-efi/bugs/5/
  44. BufferSize is a UINT64 *. The file shipped with GNU EFI is from
  45. 1998 whereas the latest one is from 2004. I suspect Intel changed
  46. the API in order handle 64-bit systems.
  47. * Change from Felipe Contreras <felipe.contreras@gmail.com>
  48. - The current code seems to screw the stack at certain points.
  49. Multiple people have complained that gummiboot hangs right away,
  50. which is in part the fault of gummiboot, but happens only
  51. because the stack gets screwed. x86_64 EFI already aligns the
  52. stack, so there's no need for so much code to find a proper
  53. alignment, we always need to shift by 8 anyway.
  54. * Change from A. Steinmetz
  55. - https://sourceforge.net/p/gnu-efi/patches/1/
  56. The patch prepares for elilo to support uefi pxe over ipv6
  57. See uefi spec 2.3.1 errata c page 963 as reference.
  58. Verfied on an ASUS Sabertooth X79 BIOS Rev. 2104 system which
  59. is able to do an IPv6 UEFI PXE boot.
  60. * Release 3.0t
  61. 2012-09-21 Nigel Croxon <nigel.croxon@hp.com>
  62. * Change from Peter Jones <pjones@redhat.com>
  63. - EFI Block I/O protocol versions 2 and 3 provide more information
  64. regarding physical disk layout, including alingment offset at the
  65. beginning of the disk ("LowestAlignedLba"), logical block size
  66. ("LogicalBlocksPerPhysicalBlock"), and optimal block transfer size
  67. ("OptimalTransferLengthGranularity").
  68. * Release 3.0r
  69. 2012-04-30 Nigel Croxon <nigel.croxon@hp.com>
  70. * Change from Matt Fleming <matt.fleming@intel.com>
  71. - The .reloc section is now 4096-byte boundary for x86_64.
  72. Without this patch the .reloc section will not adhere to
  73. the alignment value in the FileAlignment field (512 bytes by
  74. default) of the PE/COFF header. This results in a signed
  75. executable failing to boot in a secure boot environment.
  76. * Release 3.0q
  77. 2011-12-12 Nigel Croxon <nigel.croxon@hp.com>
  78. * Changes from Fenghua Yu <fenghua.yu@intel.com>
  79. - This fixes redefined types compilation failure for tcc.c on x86_64 machines.
  80. * Release 3.0p
  81. 2011-11-15 Nigel Croxon <nigel.croxon@hp.com>
  82. * Changes from Darren Hart <dvhart@linux.intel.com>
  83. - Conditionally assign toolchain binaries to allow overriding them.
  84. - Force a dependency on lib for gnuefi.
  85. * Release 3.0n
  86. 2011-08-23 Nigel Croxon <nigel.croxon@hp.com>
  87. * Changes from Peter Jones <pjones@redhat.com>
  88. - Add guarantee 16-byte stack alignment on x86_64.
  89. - Add routine to make callbacks work.
  90. - Add apps/tcc.efi to test calling convention.
  91. * Release 3.0m
  92. 2011-07-22 Nigel Croxon <nigel.croxon@hp.com>
  93. * Changed Makefiles from GPL to BSD.
  94. * Changes from Peter Jones <pjones@redhat.com>
  95. - Add ifdefs for ia64 to mirror ia32 and x86-64 so that
  96. one can build with GCC.
  97. - Add headers for PciIo.
  98. - Add the UEFI 2.x bits for EFI_BOOT_SERVICES
  99. - Add an ignore for .note.GNU-stack section in X86-64 linker maps.
  100. * Release 3.0l
  101. 2011-04-07 Nigel Croxon <nigel.croxon@hp.com>
  102. * Change license from GPL to BSD.
  103. * Release 3.0j
  104. 2009-09-12 Julien BLACHE <jb@jblache.org>
  105. * Add support for FreeBSD.
  106. * Release 3.0i
  107. 2009-09-11 Julien BLACHE <jb@jblache.org>
  108. * Fix elf_ia32_efi.lds linker script to be compatible with the new
  109. linker behaviour. Patch from the RedHat bugzilla 492183.
  110. 2009-06-18 Nigel Croxon <nigel.croxon@hp.com>
  111. * Release 3.0h
  112. 2008-11-06 Nigel Croxon <nigel.croxon@hp.com>
  113. * Fix to not having any relocations at all.
  114. 2008-09-18 Nigel Croxon <nigel.croxon@hp.com>
  115. * Use LIBDIR in makefiles
  116. * Add setjmp/longjmp
  117. * Fixes incorrect section attribute in crt0-efi-ia32.S
  118. * Adds value EfiResetShutdown to enum EFI_RESET_TYPE
  119. * Fixes a RAW warning in reloc_ia64.S
  120. * Adds the USB HCI device path structure in the headers
  121. patches were supplied by Peter Jones @ RedHat
  122. 2008-02-22 Nigel Croxon <nigel.croxon@hp.com>
  123. * Added '-mno-red-zone' to x68_64 compiles.
  124. Patch provided by Mats Andersson.
  125. 2008-01-23 Nigel Croxon <nigel.croxon@hp.com>
  126. * release 3.0e to support x86_64
  127. EFI calling convention, the stack should be aligned in 16 bytes
  128. to make it possible to use SSE2 in EFI boot services.
  129. This patch fixes this issue. Patch provided by Huang Ying from Intel.
  130. 2007-05-11 Nigel Croxon <nigel.croxon@hp.com>
  131. * release 3.0d to support x86_64 from Chandramouli Narayanan
  132. from Intel and based on 3.0c-1
  133. 2006-03-21 Stephane Eranian <eranian@hpl.hp.com>
  134. * merged patch to support gcc-4.1 submitted by
  135. Raymund Will from Novell/SuSE
  136. 2006-03-20 Stephane Eranian <eranian@hpl.hp.com>
  137. * updated ia-64 and ia-32 linker scripts to
  138. match latest gcc. The new gcc may put functions in
  139. .text* sections. patch submitted by H.J. Lu from Intel.
  140. 2004-11-19 Stephane Eranian <eranian@hpl.hp.com>
  141. * added patch to ignore .eh_frame section for IA-32. Patch
  142. submitted by Jim Wilson
  143. 2004-09-23 Stephane Eranian <eranian@hpl.hp.com>
  144. * added patch to discard unwind sections, newer toolchains
  145. complained about them. Patch submitted by Jesse Barnes from SGI.
  146. 2003-09-29 Stephane Eranian <eranian@hpl.hp.com>
  147. * updated elf_ia64_efi.lds to reflect new data sections
  148. created by gcc-3.3. Patch provided by Andreas Schwab from Suse.
  149. 2003-06-20 Stephane Eranian <eranian@hpl.hp.com>
  150. * updated elf_ia64_efi.lds and elf_ia32_efi.lds to include
  151. new types data sections produced by recent version of gcc-3.x
  152. 2002-02-22 Stephane Eranian <eranian@hpl.hp.com>
  153. * release 3.0a
  154. * modified both IA-64 and IA-32 loader scripts to add support for the
  155. new .rodata sections names (such as rodata.str2.8). Required
  156. for new versions of gcc3.x.
  157. 2001-06-20 Stephane Eranian <eranian@hpl.hp.com>
  158. * release 3.0
  159. * split gnu-efi package in two different packages: the libary+include+crt and the bootloader.
  160. * removed W2U() hack and related files to get from wide-char to unicode.
  161. * Use -fshort-wchar option for unicode.
  162. * restructured Makefiles now install under INSTALLROOT.
  163. 2001-04-06 Stephane Eranian <eranian@hpl.hp.com>
  164. * incorporated patches from David and Michael Johnston at Intel
  165. to get the package to compile for IA-32 linux target.
  166. * Fixed ELILO to compile for Ia-32 (does not execute yet, though):
  167. Makefile and start_kernel() function.
  168. 2001-04-06 Andreas Schwab <schwab@suse.de>
  169. * Fixed config.c to
  170. get the timeout directive to do something. implemented the global
  171. root= directive.
  172. * Fix the efi_main() to deal with the -C option properly
  173. 2001-04-05 Stephane Eranian <eranian@hpl.hp.com>
  174. * update efi library to latest EFI toolkit 1.02 as distributed
  175. by Intel. Fixed header + library files to compile with GCC
  176. * merged ELI and LILO (as of gnu-efi-1.1) together, mostly
  177. taking the config file feature of ELI.
  178. * renamed LILO to ELILO to make the distinction
  179. * restructured code to make it easier to understand and maintain
  180. * fixed FPSWA driver checking and loading: we try all possible
  181. files and let the driver itself figure out if it is the most
  182. recent.
  183. * added support for compression (gzip) but keep support for plain
  184. ELF image. ELILO autodetects the format
  185. * change the way the kernel is invoked. Now we call it in
  186. physical memory mode. This breaks the dependency between the
  187. kernel code and the loader. No more lilo_start.c madness.
  188. * changed the way the boot_params are passed. We don't use the
  189. ZERO_PAGE_ADDR trick anymore. Instead we use EFI runtime memory.
  190. The address of the structure is passed to the kernel in r28
  191. by our convention.
  192. * released as gnu-efi-2.0
  193. 2001-04-03 David Mosberger <davidm@hpl.hp.com>
  194. * gnuefi/reloc_ia32.c (_relocate): Change return type from "void"
  195. to "int". Return error status if relocation fails for some
  196. reason.
  197. * gnuefi/elf_ia32_efi.lds: Drop unneeded ".rel.reloc" section.
  198. * gnuefi/crt0-efi-ia32.S (_start): Exit if _relocate() returns with
  199. non-zero exit status.
  200. * inc/ia32/efibind.h [__GNUC__]: Force 8-byte alignment for 64-bit
  201. types as that is what EFI appears to be expecting, despite the
  202. "#pragma pack()" at the beginning of the file!
  203. 2001-03-29 David Mosberger <davidm@hpl.hp.com>
  204. * gnuefi/reloc_ia32.c: Add a couple of defines to work around
  205. libc/efilib collision on uint64_t et al.
  206. (_relocate): Use ELF32_R_TYPE() instead of ELFW(R_TYPE)().
  207. * gnuefi/crt0-efi-ia32.S (dummy): Add a dummy relocation entry.
  208. 2001-03-29 David Mosberger <davidm@hpl.hp.com>
  209. * gnuefi/reloc_ia32.c: Add a couple of defines to work around
  210. libc/efilib collision on uint64_t et al.
  211. (_relocate): Use ELF32_R_TYPE() instead of ELFW(R_TYPE)().
  212. * gnuefi/crt0-efi-ia32.S (dummy): Add a dummy relocation entry.
  213. 2000-10-26 David Mosberger <davidm@hpl.hp.com>
  214. * gnuefi/elf_ia64_efi.lds: Mention .rela.sdata.
  215. * Make.defaults (CFLAGS): Remove -nostdinc flags so we can pick
  216. up the C compiler's stdarg.h.
  217. * inc/stdarg.h: Remove this file. It's not correct for gcc (nor
  218. most other optimizing compilers).
  219. 2000-10-10 Stephane Eranian <eranian@hpl.hp.com>
  220. * cleaned up the error message and printing of those.
  221. * added support to load the FPSWA from a file in case support is not
  222. present in the firmware already
  223. * fixed split_args() to do the right thing when you have leading spaces
  224. before kernel name
  225. * changed the argify() function to rely on \0 instead of LoadOptionSize
  226. as the field seems to be broken with current firmware
  227. * bumped version to 1.0
  228. 2000-10-04 David Mosberger <davidm@hpl.hp.com>
  229. * gnuefi/reloc_ia64.S: Reserve space for up to 750 function descriptors.
  230. * gnuefi/elf_ia64_efi.lds: Add .sdata section for small data and
  231. put __gp in the "middle" of it.
  232. * gnuefi/crt0-efi-ia64.S (_start): Use movl/add to load
  233. gp-relative addresses that could be out of the range of the addl
  234. offset.
  235. * gnuefi/reloc_ia64.S (_relocate): Ditto.
  236. * apps/Makefile: Remove standard rules and include Make.rules instead.
  237. * lilo/Makefile: Ditto.
  238. * Make.rules: New file.
  239. 2000-08-04 Stephane Eranian <eranian@hpl.hp.com>
  240. * released version 0.9
  241. * incorporated ACPI changes for Asuza by NEC < kouchi@hpc.bs1.fc.nec.co.jp>
  242. * added support for initrd (-i option) original ELI code from Bill Nottingham <notting@redhat.com>)
  243. * lots of cleanups
  244. * got rid of #ifdef LILO_DEBUG and uses macro instead
  245. * fix a few extra memory leaks in create_boot_params()
  246. * added exit capability just before starting the kernel
  247. 2000-06-22 David Mosberger <davidm@hpl.hp.com>
  248. * gnuefi/elf_ia64_efi.lds: Add .srodata, .ctors, .IA64.unwind,
  249. .IA64.unwind_info to .data section and .rela.ctors to .rela
  250. section.
  251. 2000-04-03 David Mosberger <davidm@hpl.hp.com>
  252. * lilo/lilo.c (LILO_VERSION): Up version number to 0.9.
  253. * gnuefi/elf_ia64_efi.lds: Include .IA_64.unwind and
  254. .IA_64.unwind_info in .data segment to avoid EFI load error
  255. "ImageAddress: pointer outside of image" error due to the .dynsym
  256. relocations against these sections.
  257. * ChangeLog: Moved from lilo/ChangeLogs.
  258. * gnuefi/reloc_ia64.S: fixed typo: .space directive had constant
  259. 100 hardcoded instead of using MAX_FUNCTION_DESCRIPTORS
  260. macro. Duh.
  261. Fri Mar 17 15:19:18 PST 2000 Stephane Eranian <eranian@hpl.hp.com>
  262. * Released 0.8
  263. * replace the getopt.c with new version free with better license
  264. * created a documentation file
  265. * fix a couple of memory leaks
  266. * code cleanups
  267. * created a separate directory for lilo in the gnu-efi package.
  268. * added support for the BOOT_IMAGE argument to kernel
  269. * default is to build natively now