ChangeLog 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  1. commit 1525190354f5faac33015e17c9ba7ea2bb2be35b
  2. Author: Nigel Croxon <nigel.croxon@hp.com>
  3. Date: Fri Aug 8 15:35:09 2014 -0400
  4. From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  5. Date: Fri, 8 Aug 2014 18:16:59 +0200
  6. Subject: [PATCH 4/4] Add support for 64-bit ARM (AArch64)
  7. This adds support for 64-bit ARM (AArch64) environments. Since there is no
  8. EFI-capable objcopy for this platform, this contains a manually laid out
  9. PE/COFF header using the assembler.
  10. In addition, it includes the relocation bits, some string functions that GCC
  11. assumes are available and other glue to hold it all together.
  12. This can be cross built using
  13. make CROSS_COMPILE=aarch64-linux-gnu-
  14. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  15. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  16. commit ac983081525f9483941517dfb53cf8d0163d49c0
  17. Author: Nigel Croxon <nigel.croxon@hp.com>
  18. Date: Fri Aug 8 15:32:26 2014 -0400
  19. From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  20. Date: Fri, 8 Aug 2014 17:53:42 +0200
  21. Subject: [PATCH 3/4] Add support for non-PE/COFF capable objcopy
  22. Introduce HAVE_EFI_OBJCOPY and set it if objcopy for $ARCH support PE/COOF and
  23. EFI, i.e., it supports --target efi-[app|bsdrv|rtdrv] options. Use it to decide
  24. whether to invoke objcopy with those options or use the linker to populate the
  25. PE/COFF header.
  26. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  27. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  28. commit fb063f0f65543b3e2bf55a39d5aa70b17a98c65e
  29. Author: Nigel Croxon <nigel.croxon@hp.com>
  30. Date: Fri Aug 8 15:26:38 2014 -0400
  31. From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  32. Date: Fri, 8 Aug 2014 17:37:36 +0200
  33. Subject: [PATCH 2/4] Add support for cross compilation
  34. This changes the logic that defines ARCH (and HOSTARCH) to take CROSS_COMPILE
  35. into account. Also, $prefix is not assigned, so that the default will be what
  36. is on the path rather than hardcoded in /usr/bin.
  37. This results in the build doing the right thing if CROSS_COMPILE is set in the
  38. environment and no ARCH or prefix options are passed to make, aligning it with
  39. most other CROSS_COMPILE compatible projects.
  40. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  41. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  42. commit 7a98d83fc32de6cf0b1ce5e12dfe80690f29fb3f
  43. Author: Nigel Croxon <nigel.croxon@hp.com>
  44. Date: Fri Aug 8 15:25:03 2014 -0400
  45. From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  46. Date: Fri, 8 Aug 2014 16:50:45 +0200
  47. Subject: [PATCH 1/4] Restrict GNU_EFI_USE_MS_ABI GCC version test to x86_64
  48. The version test only applies to x86_64 builds, so no need to do it
  49. for other archs.
  50. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
  51. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  52. commit f42974dd9a7d0ea690d293f88396abd289f0014c
  53. Author: Nigel Croxon <nigel.croxon@hp.com>
  54. Date: Fri Aug 8 15:21:16 2014 -0400
  55. From: David Decotigny <decot@googlers.com>
  56. Date: Thu, 31 Jul 2014 13:42:23 -0700
  57. Subject: [PATCH 4/4] Use Shell protocols to retrieve argc/argv, when
  58. available.
  59. New header files efishellintf.h efishellparm.h are coming from EDK
  60. II, initial location and license at top of files. Only modifications:
  61. - efishellintf.h: s/EFI_FILE_PROTOCOL/EFI_FILE/ + expand BITx macros (1<<x)
  62. - efishellparm.h: typedef VOID *SHELL_FILE_HANDLE to avoid including
  63. ShellBase.h
  64. - both: removed extern EFI_GUID variable decls
  65. This also adds apps/t8.c, a simple demo.
  66. Signed-off-by: David Decotigny <decot@googlers.com>
  67. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  68. commit a61fa058e9a87f966de3342b8c95fdbdcb007827
  69. Author: Nigel Croxon <nigel.croxon@hp.com>
  70. Date: Fri Aug 8 15:17:32 2014 -0400
  71. From: David Decotigny <decot@googlers.com>
  72. Date: Thu, 31 Jul 2014 13:41:52 -0700
  73. Subject: [PATCH 3/4] document format of LoadedImage::LoadOptions data
  74. Signed-off-by: David Decotigny <decot@googlers.com>
  75. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  76. commit 2f440200c855154f929d28971b2fd702ea7a207a
  77. Author: Nigel Croxon <nigel.croxon@hp.com>
  78. Date: Fri Aug 8 15:15:59 2014 -0400
  79. From: David Decotigny <decot@googlers.com>
  80. Date: Thu, 31 Jul 2014 13:39:37 -0700
  81. Subject: [PATCH 2/4] Use OpenProtocol instead of HandleProtocol
  82. UEFI 2.x recommends OpenProtocol instead of HandleProtocol.
  83. Signed-off-by: David Decotigny <decot@googlers.com>
  84. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  85. commit 7f173da1e54f8cfe4c7c7c091ab6585af07b25ce
  86. Author: Nigel Croxon <nigel.croxon@hp.com>
  87. Date: Fri Aug 8 15:14:26 2014 -0400
  88. From: David Decotigny <decot@googlers.com>
  89. Date: Thu, 31 Jul 2014 13:30:07 -0700
  90. Subject: [PATCH 1/4] move cmdline parser to its own file
  91. Signed-off-by: David Decotigny <decot@googlers.com>
  92. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  93. commit 0ad8fb87cbc59f58675b18253ad802ba51f1d132
  94. Author: Nigel Croxon <nigel.croxon@hp.com>
  95. Date: Wed Jul 30 15:06:36 2014 -0400
  96. From: David Decotigny <decot@googlers.com>
  97. Date: Mon, 28 Jul 2014 21:28:50 -0700
  98. Subject: [PATCH 3/3] make cmdline parsing a 1st class citizen
  99. Refactor ParseCmdline and apps/Alloc+FreePages to factorize
  100. boilerplate and move the new parser to the main API.
  101. Signed-off-by: David Decotigny <decot@googlers.com>
  102. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  103. commit ff7ec964f2c0de0cfc4b52cfdd356003450f28bf
  104. Author: Nigel Croxon <nigel.croxon@hp.com>
  105. Date: Wed Jul 30 15:05:28 2014 -0400
  106. From: David Decotigny <decot@googlers.com>
  107. Date: Mon, 28 Jul 2014 21:00:52 -0700
  108. Subject: [PATCH 2/3] Avoid buffer overflow while parsing the cmdline args
  109. Signed-off-by: David Decotigny <decot@googlers.com>
  110. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  111. commit 8d86ee202a9bb553375f56ae1d2944818112b68b
  112. Author: Nigel Croxon <nigel.croxon@hp.com>
  113. Date: Wed Jul 30 15:04:44 2014 -0400
  114. From: David Decotigny <decot@googlers.com>
  115. Date: Mon, 28 Jul 2014 21:01:35 -0700
  116. Subject: [PATCH 1/3] Fix cmdline parser
  117. The cmdline parser would not return the correct number of args, would
  118. allocate one too many. Also make it clear from the declaration that we
  119. expect a suitably lare argv.
  120. Signed-off-by: David Decotigny <decot@googlers.com>
  121. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  122. commit 1ec094bfaf46a610a740dadc0150bf457dd72345
  123. Author: Nigel Croxon <nigel.croxon@hp.com>
  124. Date: Wed Jul 23 09:54:25 2014 -0400
  125. From: Julian Klode <julian.klode@gmail.com>
  126. Date: Mon, 21 Jul 2014 14:26:23 -0400
  127. Subject: [PATCH] inc/efistdarg.h: Use gcc builtins instead of stdarg.h or broken stubs
  128. We cannot use stdarg.h, as this breaks applications compiling
  129. with -nostdinc because those will not find the header.
  130. We also cannot use the stubs, as they just produce broken code,
  131. as seen in the gummiboot 45-1 Debian release.
  132. Signed-off-by: Julian Klode <julian.klode@gmail.com>
  133. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  134. commit 6caab22f23434f41f42cfe7591d9a7ae66de9f0a
  135. Author: Nigel Croxon <nigel.croxon@hp.com>
  136. Date: Thu Jun 19 10:39:23 2014 -0400
  137. From: Laszlo Ersek <lersek@redhat.com>
  138. Date: Mon, 2 Jun 2014 23:26:48 +0200
  139. Subject: [PATCH] always observe EFIAPI calling convention when calling
  140. STO.SetAttribute
  141. We have to consider the following cases wrt. the PRINT_STATE.Output and
  142. PRINT_STATE.SetAttr EFIAPI function pointers, especially when building for
  143. x86_64 with gcc:
  144. (1) The compiler is new enough, and EFIAPI actually ensures the Microsoft
  145. calling convention. In this case everything happens to work fine even
  146. if we forget uefi_call_wrapper(), because the wrapper would expand to
  147. a normal C function call anyway.
  148. (2) Otherwise (ie. gcc is old), EFIAPI expands to nothing, and we must
  149. take into account the called function's origin:
  150. (2a) If the callee that is declared EFIAPI is *defined* inside gnu-efi,
  151. then EFIAPI means nothing for the callee too, so caller and callee
  152. only understand each other if the caller intentionally omits
  153. uefi_call_wrapper().
  154. (2b) If the callee that is declared EFIAPI is defined by the platform
  155. UEFI implementation, then the caller *must* use
  156. uefi_call_wrapper().
  157. The PRINT_STATE.Output EFIAPI function pointer is dereferenced correctly:
  158. the PFLUSH() distinguishes cases (2a) from (2b) by using IsLocalPrint().
  159. However use of the PRINT_STATE.SetAttr EFIAPI function pointer is not
  160. always correct:
  161. - The PSETATTR() helper function always relies on the wrapper (case (2b)).
  162. This is correct, because PRINT_STATE.SetAttr always points to a
  163. platform-provided function.
  164. - The DbgPrint() function contains two incorrect calls: they mistakenly
  165. assume case (2a) (or case (1)), even though the pointer always points to
  166. a platform function, implying (2b). (The error is masked in case (1).)
  167. Fix them.
  168. Signed-off-by: Laszlo Ersek <lersek@redhat.com>
  169. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  170. commit ecfd1ded9a799c3a572d4eb7fbb52582fe4d3390
  171. Author: Nigel Croxon <nigel.croxon@hp.com>
  172. Date: Tue Jun 10 12:59:09 2014 -0400
  173. Add VPoolPrint Function
  174. Equivalent to PoolPrint but using a va_list parameter
  175. Signed-off-by: Sylvain Chouleur <sylvain.chouleur@intel.com>
  176. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  177. commit f16d93f3b9e314336a387a3885c7fd2f176c41d3
  178. Author: Nigel Croxon <nigel.croxon@hp.com>
  179. Date: Fri May 16 11:33:51 2014 -0400
  180. Revert "The prototype of DbgPrint() is incorrect, at the end of "inc/efidebug.h"."
  181. A problem was found compiling on GCC 4.8.
  182. This reverts commit 644898eabc06c8efaa3aa54f84cdd468960a2f6c.
  183. commit 644898eabc06c8efaa3aa54f84cdd468960a2f6c
  184. Author: Nigel Croxon <nigel.croxon@hp.com>
  185. Date: Wed May 14 09:09:47 2014 -0400
  186. The prototype of DbgPrint() is incorrect, at the end of "inc/efidebug.h".
  187. Consequently, when your program calls DbgPrint() via the DEBUG() macro,
  188. it fails to set up the stack correctly (it does not pass the arguments
  189. through the ellipsis (...) according to the EFIAPI calling convention).
  190. However, va_start() inside DbgPrint() *assumes* that stack.
  191. Signed-off-by: Laszlo Ersek <lersek@redhat.com>
  192. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  193. commit 8921ba2fc5f6163bdad3b5902c5d9d638415dde0
  194. Author: Nigel Croxon <nigel.croxon@hp.com>
  195. Date: Mon Apr 14 18:49:23 2014 -0400
  196. Cleaned up compile warnings.
  197. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  198. commit 42cca551dbf1c0be9e02e8d3d3c417ce35749638
  199. Author: Nigel Croxon <nigel.croxon@hp.com>
  200. Date: Mon Apr 14 14:04:11 2014 -0400
  201. Module lib/ParseCmdLine.c has errors, it incorrectly mixes "char" and "CHAR16"
  202. and uses a pointer to argv[] like it's argv[]. The compiler only issues
  203. warnings though. Here is a patch to remove compiler warnings and make the
  204. code behave.
  205. Signed-off-by: Bernard Burette <bub75@users.sf.net>
  206. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  207. commit 4e8460f1aedd2724de876be5b154eb5752bfada5
  208. Author: Nigel Croxon <nigel.croxon@hp.com>
  209. Date: Mon Apr 14 13:53:03 2014 -0400
  210. Here is a very small patch to remove a compiler warning when processing lib/smbios.c.
  211. Signed-off-by: Bernard Burette <bub75@users.sf.net>
  212. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  213. commit 6a0875ca2fcb67e7d1a1e2d15f3bcc645329dc75
  214. Author: Nigel Croxon <nigel.croxon@hp.com>
  215. Date: Mon Apr 14 13:45:16 2014 -0400
  216. Here is a very small patch to remove compiler warning in function
  217. "LibLocateHandleByDiskSignature()" because the "Start" variable is
  218. give a value which is not used.
  219. Signed-off-by: Bernard Burette <bub75@users.sf.net>
  220. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  221. commit d5f35dfb8008ba65bcc641559accd9bc13386ef9
  222. Author: Nigel Croxon <nigel.croxon@hp.com>
  223. Date: Mon Apr 14 13:40:29 2014 -0400
  224. Here is a very small patch to remove *~ files in include diretory.
  225. Signed-off-by: Bernard Burette <bub75@users.sf.net>
  226. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  227. commit 1a04669a7bb022984c9b54a0f73d7d67a2540fb7
  228. Author: Nigel Croxon <nigel.croxon@hp.com>
  229. Date: Mon Apr 14 12:45:57 2014 -0400
  230. Here is a patch for "DevicePathToStr()" to display device path according to UEFI 2 specification.
  231. The path is in the two files inc/efidevp.h and lib/dpath.c.
  232. It also add the Sata device path and removes the "/?" path for unknown device paths.
  233. Signed-off-by: Bernard Burette <bub75@users.sf.net>
  234. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  235. commit 3c62e78556aea01e9798380cd46794c6ca09d4bd
  236. Author: Nigel Croxon <nigel.croxon@hp.com>
  237. Date: Tue Apr 1 10:26:44 2014 -0400
  238. Removed GPL code setjmp_ia32.S, setjmp_ia64.S, setjmp_x86_64.S
  239. Not used anymore.
  240. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  241. commit f9baa4f622cf34576d73e00d4a774a31f0f81fd7
  242. Author: Nigel Croxon <nigel.croxon@hp.com>
  243. Date: Mon Mar 31 08:37:56 2014 -0400
  244. Remove incumbent GPL 'debian' subdiretory.
  245. Update ChangeLog
  246. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  247. Changelog format change from here and above to 'git log' style.
  248. 2014-04-01 Nigel Croxon <nigel.croxon@hp.com>
  249. Removed GPL code setjmp_ia32.S, setjmp_ia64.S, setjmp_x86_64.S
  250. Not used anymore.
  251. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  252. 2014-03-17 Nigel Croxon <nigel.croxon@hp.com>
  253. Add support for the simple pointer and absolute pointer protocols
  254. Signed-off-by: John Cronin <johncronin@users.sf.net>
  255. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  256. 2014-03-14 Nigel Croxon <nigel.croxon@hp.com>
  257. Trying to recurse into subdirectories of object files may lead
  258. to an error if the directory doesn't exist. Even when cleaning.
  259. Signed-off-by: Sylvain Gault <sylvain.gault@gmail.com>
  260. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  261. 2014-03-14 Nigel Croxon <nigel.croxon@hp.com>
  262. Make install used to copy files unconditionnally to their
  263. destination. However, if the destination is used by another
  264. Makefile, it will always see modified files. "install" target
  265. now only updates the files when they need to.
  266. Signed-off-by: Sylvain Gault <sylvain.gault@gmail.com>
  267. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  268. 2014-02-13 Nigel Croxon <nigel.croxon@hp.com>
  269. Patch GNU-EFI to remove the ELILO code
  270. Signed-off-by: Jerry Hoemann <jerry.hoemann@hp.com>
  271. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  272. 2014-02-13 Nigel Croxon <nigel.croxon@hp.com>
  273. Initialize Status before calling GrowBuffer()
  274. Status must be initialized before calling GrowBuffer() as it may
  275. otherwise be uninitialized or set to EFI_BUFFER_TOO_SMALL by
  276. other functions.
  277. Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
  278. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  279. 2014-01-23 Nigel Croxon <nigel.croxon@hp.com>
  280. These changes allow manually overridden SRCDIR (current source
  281. directory) and TOPDIR (top of source tree) to separate the
  282. build directory from the source tree.
  283. Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
  284. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  285. 2014-01-16 Nigel Croxon <nigel.croxon@hp.com>
  286. compilation: fix uninitialized variables warning
  287. Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com>
  288. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  289. 2014-01-13 Nigel Croxon <nigel.croxon@hp.com>
  290. Implement VSPrint function, prints a formatted unicode string to a buffer.
  291. Signed-off-by: Jeremy Compostella <jeremy.compostella@gmail.com>
  292. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  293. 2014-01-10 Nigel Croxon <nigel.croxon@hp.com>
  294. Created lib/argify.c and inc/argify.h containing the function argify.
  295. It contains verbatim copy of the comment at beginning of file from
  296. elilo.
  297. There was no COPYING file in the elilo source that the comment refers to.
  298. Signed-off-by: Jerry Hoemann <jerry.hoemann@hp.com>
  299. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  300. 2014-01-08 Nigel Croxon <nigel.croxon@hp.com>
  301. The information needed is not really the host architecture as given by
  302. the kernel arch. The information actually needed is the default target
  303. of gcc.
  304. Signed-off-by: Sylvain Gault <sylvain.gault@gmail.com>
  305. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  306. 2013-10-11 Nigel Croxon <nigel.croxon@hp.com>
  307. Added support for SetVariable to store volatile variable,
  308. and SetNVVariable to store non volatile variable.
  309. Signed-off-by: Sylvain Chouleur <sylvain.chouleur@gmail.com>
  310. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  311. 2013-10-07 Nigel Croxon <nigel.croxon@hp.com>
  312. Atoi needs to have consistent declaration/definition.
  313. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  314. 2013-10-07 Nigel Croxon <nigel.croxon@hp.com>
  315. if you have a function that takes const arguments and then
  316. e.g. tries to copy StrCmp, gcc will give you warnings about those
  317. calls, and the warnings are right. These clutter up other things
  318. you might miss that you should be more concered about.
  319. You could work around it through vigorous typecasting
  320. to non-const types, but why should you have to? All of these
  321. functions are regorously defined as not changing their input
  322. - it is const, and should be marked as such.
  323. Signed-off-by: Peter Jones <pjones@redhat.com>
  324. 2013-10-02 Nigel Croxon <nigel.croxon@hp.com>
  325. Added two simple applications to allocate/free memory at EFI.
  326. Used to test/find memory fragmentation issues linux.
  327. Signed-off-by: Jerry Hoemann <jerry.hoemann@hp.com>
  328. Signed-off-by: Nigel Croxon <nigel.croxon@hp.com>
  329. 2013-06-25 Nigel Croxon <nigel.croxon@hp.com>
  330. Sample boot service driver.
  331. Signed-off-by: David Decotigny <decot@googlers.com>
  332. 2013-06-25 Nigel Croxon <nigel.croxon@hp.com>
  333. Date: Tue Jun 25 08:47:03 2013 -0400
  334. Be more pedantic when linking, don't allow duplicate symbols,
  335. abort upon first error. Also make sure linker script comes
  336. last for apps.
  337. Signed-off-by: David Decotigny <decot@googlers.com>
  338. 2013-06-25 Nigel Croxon <nigel.croxon@hp.com>
  339. Fix compilation on x86_64 without HAVE_USE_MS_ABI
  340. make -C apps would fail on tcc.c because uefi_call_wrapper()
  341. doesn't deal correctly with efi_callO-type invocation.
  342. Signed-off-by: David Decotigny <decot@googlers.com>
  343. 2013-06-12 Nigel Croxon <nigel.croxon@hp.com>
  344. Fix typo when disabling mno-mmx
  345. Signed-Off-By: Nigel Croxon <nigel.croxon@hp.com>
  346. 2013-06-12 Nigel Croxon <nigel.croxon@hp.com>
  347. Disable MMX and SSE
  348. GCC 4.8.0 adds some optimizations that will use movups/movaps (and use
  349. %xmm* registers) when they're faster, and of course that won't work at
  350. all since UEFI firmwares aren't guaranteed to initialize the mmx/sse
  351. instructions.
  352. This will be even more annoying, since most UEFI firmwares don't
  353. initialize the #DE or #UD trap handlers, and your backtrace will be a
  354. random path through uninitialized memory, occasionally including
  355. whatever address the IDT has for #UD, but also addresses like "0x4" and
  356. "0x507" that you don't normally expect to see in your call path.
  357. Signed-off-by: Peter Jones <pjones@redhat.com>
  358. Author: Nigel Croxon <nigel.croxon@hp.com>
  359. Date: Wed Jun 12 10:29:40 2013 -0400
  360. bug in make 3.82 expand to odd values
  361. Some Makefiles tickle a bug in make 3.82 that cause libefi.a
  362. and libgnuefi.a dependencies to expand to the odd values:
  363. libefi.a: boxdraw.o) smbios.o) ...
  364. libgnuefi.a(reloc_x86_64.o:
  365. The patch replaces libgnuefi.a($(OBJS)) & libefi.a($(OBJS))
  366. with an equivalent expansion that should work with any make
  367. that supports $(patsubst).
  368. Author: Nigel Croxon <nigel.croxon@hp.com>
  369. Date: Wed Jun 12 09:53:01 2013 -0400
  370. support .text.* sections on x86_64
  371. Group them in .text. Also add vague linkage sections in .text.
  372. Signed-off-by: David Decotigny <decot@googlers.com>
  373. Author: Nigel Croxon <nigel.croxon@hp.com>
  374. Date: Wed Jun 12 09:51:36 2013 -0400
  375. cleanup and fix Make.defaults
  376. Reorder variables in Make.defaults so that they are grouped by
  377. functions. Also fixed ifeq (x,y) to have required syntax and make it
  378. work for ARCH amd64->x86_64 renaming on BSD. Also provides top-level
  379. Makefile with a "mkvars" target that displays effective variables.
  380. Signed-off-by: David Decotigny <decot@googlers.com>
  381. Author: Nigel Croxon <nigel.croxon@hp.com>
  382. Date: Wed Jun 12 09:47:16 2013 -0400
  383. automatically determine number of uefi_call_wrapper() args on x86_64
  384. Instead of asking developers to explicitly pass the number of
  385. parameters to the functions that get called, we determine them
  386. automatically at preprocessing time. This should result in more
  387. robust code.
  388. Argument va_num is now ignored in x86_64 code, both with and
  389. without HAVE_USE_MS_ABI.
  390. Credits to the macro magic given in the comments.
  391. Signed-off-by: David Decotigny <decot@googlers.com>
  392. Author: Nigel Croxon <nigel.croxon@hp.com>
  393. Date: Wed Jun 12 09:38:10 2013 -0400
  394. fix parameter-passing corruption on x86_64 for >= 5 args
  395. On x86_64 without HAVE_USE_MS_ABI support, uefi_call_wrapper() is a
  396. variadic function. Parameters >=5 are copied to the stack and, when
  397. passed small immediate values (and possibly other parameters), gcc
  398. would emit a movl instruction before calling uefi_call_wrapper(). As a
  399. result, only the lower 32b of these stack values are significant, the
  400. upper 32b potentially contain garbage. Considering that
  401. uefi_call_wrapper() assumes these arguments are clean 64b values
  402. before calling the efi_callX() trampolines, the latter may be passed
  403. garbage. This makes calling functions like
  404. EFI_PCI_IO_PROTOCOL.Mem.Read()/Write() or BS->OpenProtocol() quite
  405. unreliable.
  406. This patch fixes this by turning uefi_call_wrapper() into a macro that
  407. allows to expose the efi_callX() trampoline signatures to the callers,
  408. so that gcc can know upfront that it has to pass all arguments to
  409. efi_callX() as clean 64b values (eg. movq for immediates). The
  410. _cast64_efi_callX macros are just here to avoid a gcc warning, they do
  411. nothing otherwise.
  412. Signed-off-by: David Decotigny <decot@googlers.com>
  413. Author: noxorc <nigel.croxon@hp.com>
  414. Date: Wed May 15 15:26:16 2013 -0400
  415. - Removes the ElfW() macro usage from reloc_ia32.c and reloc_x86_64.c. These
  416. macros only exist in link.h on Linux. On FreeBSD, the equivalent macro is
  417. __ElfN(). But the macro usage is redundant. You're only going to compile the
  418. ia32 file for IA32 binaries and the x86_64 file for X64 binaries. If you had
  419. just one file built for both cases, then using the macro might make more
  420. sense.
  421. - Removes the "#define foo_t efi_foo_t" macros from reloc_ia32.c and
  422. reloc_x86_64.c.
  423. - Modifies inc/x86_64/efibind.h and inc/ia32/efibind.h to use the new
  424. definitions for uint64_t, int64_t and int8_t. The 64-bit types are now defined
  425. as:
  426. typedef int __attribute__((__mode__(__DI__))) int64_t;
  427. typedef unsigned int __attribute__((__mode__(__DI__))) uint64_t;
  428. This removes the conflict between the host types dragged in by elf.h and the
  429. type definitions in efibind.h that made the #define foo_t efi_foo_t" hack
  430. necessary. Also, int8_t is now defined as signed char instead of just char
  431. (assuming char == signed char is apparently not good enough).
  432. - Also modifies these files to use stdint.h instead of stdint-gcc.h. It's
  433. unclear if this is completely correct, but stdint-gcc.h is not present with
  434. all GCC installs, and if you use -std=c99 or later you will force this case to
  435. be hit. This also can break clang, which doesn't have a stdint-gcc.h at all.
  436. - Removes the #include of <link.h> from reloc_ia32.c and reloc_x86_64.c (since
  437. with the previous changes it's not needed anymore).
  438. - Places the #include of <elf.h> after #include <efi>/#include <efilib.h> so
  439. that we know the types will always be defined properly, in case you build on a
  440. system where <elf.h> doesn't automatically pull in the right header files to
  441. define all the needed types. (This actually happens on VxWorks. It's harmless
  442. elsewhere. If you don't care about VxWorks, you can leave this out.)
  443. - Modifies setjmp_ia32.S and setjmp_x86_64.S so to change "function" to
  444. @function. The clang compiler doesn't like the former. Clang and GCC both like
  445. the latter.
  446. - Modifles Make.defaults so that if ARCH is detected as "amd64," it's changed
  447. to "x86_64." It happens that uname -m on 64-bit FreeBSD reports the former
  448. rather than the latter, which breaks the build. This may also be the case on
  449. some other OSes. There's a way to force uname(1) to return x86_64 as the
  450. machine type, but this way is a little friendlier.
  451. - Creates gnuefi/elf_ia32_fbsd_efi.lds which specifies the object file type as
  452. elf-ia32-freebsd. This is required for building on FreeBSD/i386, not just
  453. FreeBSD/amd64.
  454. - Modifies apps/Makefile to always use
  455. $(TOPDIR)/gnuefi/elf_$(ARCH)_fbsd_efi.lds when building on either 32-bit or
  456. 64-bit FreeBSD instead of just for the x86_64 case.
  457. - Changed LDFLAGS in Make.defaults to include --no-undefined. This will cause
  458. linking to fail if there are any unsatisfied symbols when creating foo.so
  459. during any of the app builds, as opposed to just silently succeeding and
  460. producing an unusable binary.
  461. - Changed CFLAGS to include -ffreestanding -fno-stack-protector -fno-stack-
  462. check. This prevents clang from inserting a call to memset() when compiling
  463. the RtZeroMem() and RtSetMem() routines in lib/runtime/efirtlib.c and guards
  464. against the native compiler in some Linux distros from adding in stack
  465. checking code which relies on libc help that isn't present in the EFI runtime
  466. environment.
  467. This does the following:
  468. - Cleans up the ia32 and x86-64 relocation code a bit (tries to break the
  469. dependency between the host ELF headers and the EFI runtime environment)
  470. - Avoids the dependency on stdint-gcc.h which may not always be available
  471. - Allows GNU EFI to build out of the box on both FreeBSD/i386 and
  472. FreeBSD/amd64
  473. - Allows GNU EFI to build out of the box with either GCC or clang on
  474. FreeBSD/i386 and FreeBSD/amd64 9.0 and later.
  475. - Makes things a little easier to port to VxWorks
  476. - Avoids creating un-runable binaries with unresolved symbol definitions
  477. (which can be very confusing to debug)
  478. Author: noxorc <nigel.croxon@hp.com>
  479. Date: Wed May 8 16:29:45 2013 -0400
  480. Add the definitions for TCP, UDP and IP, for both IPv4 and IPv6.
  481. 2013-05-02 Nigel Croxon <nigel.croxon@hp.com>
  482. * Chnage from Matt Fleming <matt.fleming@intel.com>
  483. - Preparation for adding the networking protocol definitions.
  484. Add the service binding protocol.
  485. 2013-02-21 Nigel Croxon <nigel.croxon@hp.com>
  486. * Change from Peter Jones <pjones@redhat.com>
  487. - Previously we were incorrectly passing 3 functions with
  488. the System V ABI to UEFI functions as EFI ABI functions.
  489. Mark them as EFIAPI so the compiler will (in our new
  490. GNU_EFI_USE_MS_ABI world) use the correct ABI.
  491. - These need to be EFIAPI functions because in some cases
  492. they call ST->ConOut->OutputString(), which is an EFIAPI
  493. function. (Which means that previously in cases that
  494. needed "cdecl", these didn't work right.)
  495. - If the compiler version is new enough, and GNU_EFI_USE_MS_ABI
  496. is defined, use the function attribute ms_abi on everything
  497. defined with "EFIAPI". Such calls will no longer go through
  498. efi_call*, and as such will be properly type-checked.
  499. - Honor PREFIX and LIBDIR correctly when passed in during the build.
  500. - Add machine type defines for i386, arm/thumb, ia64, ebc, x86_64.
  501. - __STDC_VERSION__ never actually gets defined unless there's a
  502. --std=... line. So we were accidentally defining lots of c99
  503. types ourself. Since it's 2012, use --std=c11 where appropriate,
  504. and if it's defined and we're using gcc, actually include gcc's
  505. stdint definitions.
  506. - New test application added: route80h. This is a test program
  507. for PciIo. It routes ioport 80h on ICH10 to PCI. This is also
  508. useful on a very limited set of hardware to enable use of
  509. a port 80h debug card.
  510. - New test applcation added: modelist. This lists video modes
  511. the GOP driver is showing us.
  512. * Change from Finnbarr Murphy
  513. - https://sourceforge.net/p/gnu-efi/feature-requests/2/
  514. Please add the following status codes to <efierr.h>
  515. EFI_INCOMPATIBLE_VERSION 25
  516. EFI_SECURITY_VIOLATION 26
  517. EFI_CRC_ERROR 27
  518. EFI_END_OF_MEDIA 28
  519. EFI_END_OF_FILE 31
  520. EFI_INVALID_LANGUAGE 32
  521. EFI_COMPROMISED_DATA 33
  522. * Change from SourceForge.net Bug report
  523. - https://sourceforge.net/p/gnu-efi/bugs/5/
  524. BufferSize is a UINT64 *. The file shipped with GNU EFI is from
  525. 1998 whereas the latest one is from 2004. I suspect Intel changed
  526. the API in order handle 64-bit systems.
  527. * Change from Felipe Contreras <felipe.contreras@gmail.com>
  528. - The current code seems to screw the stack at certain points.
  529. Multiple people have complained that gummiboot hangs right away,
  530. which is in part the fault of gummiboot, but happens only
  531. because the stack gets screwed. x86_64 EFI already aligns the
  532. stack, so there's no need for so much code to find a proper
  533. alignment, we always need to shift by 8 anyway.
  534. * Change from A. Steinmetz
  535. - https://sourceforge.net/p/gnu-efi/patches/1/
  536. The patch prepares for elilo to support uefi pxe over ipv6
  537. See uefi spec 2.3.1 errata c page 963 as reference.
  538. Verfied on an ASUS Sabertooth X79 BIOS Rev. 2104 system which
  539. is able to do an IPv6 UEFI PXE boot.
  540. * Release 3.0t
  541. 2012-09-21 Nigel Croxon <nigel.croxon@hp.com>
  542. * Change from Peter Jones <pjones@redhat.com>
  543. - EFI Block I/O protocol versions 2 and 3 provide more information
  544. regarding physical disk layout, including alingment offset at the
  545. beginning of the disk ("LowestAlignedLba"), logical block size
  546. ("LogicalBlocksPerPhysicalBlock"), and optimal block transfer size
  547. ("OptimalTransferLengthGranularity").
  548. * Release 3.0r
  549. 2012-04-30 Nigel Croxon <nigel.croxon@hp.com>
  550. * Change from Matt Fleming <matt.fleming@intel.com>
  551. - The .reloc section is now 4096-byte boundary for x86_64.
  552. Without this patch the .reloc section will not adhere to
  553. the alignment value in the FileAlignment field (512 bytes by
  554. default) of the PE/COFF header. This results in a signed
  555. executable failing to boot in a secure boot environment.
  556. * Release 3.0q
  557. 2011-12-12 Nigel Croxon <nigel.croxon@hp.com>
  558. * Changes from Fenghua Yu <fenghua.yu@intel.com>
  559. - This fixes redefined types compilation failure for tcc.c on x86_64 machines.
  560. * Release 3.0p
  561. 2011-11-15 Nigel Croxon <nigel.croxon@hp.com>
  562. * Changes from Darren Hart <dvhart@linux.intel.com>
  563. - Conditionally assign toolchain binaries to allow overriding them.
  564. - Force a dependency on lib for gnuefi.
  565. * Release 3.0n
  566. 2011-08-23 Nigel Croxon <nigel.croxon@hp.com>
  567. * Changes from Peter Jones <pjones@redhat.com>
  568. - Add guarantee 16-byte stack alignment on x86_64.
  569. - Add routine to make callbacks work.
  570. - Add apps/tcc.efi to test calling convention.
  571. * Release 3.0m
  572. 2011-07-22 Nigel Croxon <nigel.croxon@hp.com>
  573. * Changed Makefiles from GPL to BSD.
  574. * Changes from Peter Jones <pjones@redhat.com>
  575. - Add ifdefs for ia64 to mirror ia32 and x86-64 so that
  576. one can build with GCC.
  577. - Add headers for PciIo.
  578. - Add the UEFI 2.x bits for EFI_BOOT_SERVICES
  579. - Add an ignore for .note.GNU-stack section in X86-64 linker maps.
  580. * Release 3.0l
  581. 2011-04-07 Nigel Croxon <nigel.croxon@hp.com>
  582. * Change license from GPL to BSD.
  583. * Release 3.0j
  584. 2009-09-12 Julien BLACHE <jb@jblache.org>
  585. * Add support for FreeBSD.
  586. * Release 3.0i
  587. 2009-09-11 Julien BLACHE <jb@jblache.org>
  588. * Fix elf_ia32_efi.lds linker script to be compatible with the new
  589. linker behaviour. Patch from the RedHat bugzilla 492183.
  590. 2009-06-18 Nigel Croxon <nigel.croxon@hp.com>
  591. * Release 3.0h
  592. 2008-11-06 Nigel Croxon <nigel.croxon@hp.com>
  593. * Fix to not having any relocations at all.
  594. 2008-09-18 Nigel Croxon <nigel.croxon@hp.com>
  595. * Use LIBDIR in makefiles
  596. * Add setjmp/longjmp
  597. * Fixes incorrect section attribute in crt0-efi-ia32.S
  598. * Adds value EfiResetShutdown to enum EFI_RESET_TYPE
  599. * Fixes a RAW warning in reloc_ia64.S
  600. * Adds the USB HCI device path structure in the headers
  601. patches were supplied by Peter Jones @ RedHat
  602. 2008-02-22 Nigel Croxon <nigel.croxon@hp.com>
  603. * Added '-mno-red-zone' to x68_64 compiles.
  604. Patch provided by Mats Andersson.
  605. 2008-01-23 Nigel Croxon <nigel.croxon@hp.com>
  606. * release 3.0e to support x86_64
  607. EFI calling convention, the stack should be aligned in 16 bytes
  608. to make it possible to use SSE2 in EFI boot services.
  609. This patch fixes this issue. Patch provided by Huang Ying from Intel.
  610. 2007-05-11 Nigel Croxon <nigel.croxon@hp.com>
  611. * release 3.0d to support x86_64 from Chandramouli Narayanan
  612. from Intel and based on 3.0c-1
  613. 2006-03-21 Stephane Eranian <eranian@hpl.hp.com>
  614. * merged patch to support gcc-4.1 submitted by
  615. Raymund Will from Novell/SuSE
  616. 2006-03-20 Stephane Eranian <eranian@hpl.hp.com>
  617. * updated ia-64 and ia-32 linker scripts to
  618. match latest gcc. The new gcc may put functions in
  619. .text* sections. patch submitted by H.J. Lu from Intel.
  620. 2004-11-19 Stephane Eranian <eranian@hpl.hp.com>
  621. * added patch to ignore .eh_frame section for IA-32. Patch
  622. submitted by Jim Wilson
  623. 2004-09-23 Stephane Eranian <eranian@hpl.hp.com>
  624. * added patch to discard unwind sections, newer toolchains
  625. complained about them. Patch submitted by Jesse Barnes from SGI.
  626. 2003-09-29 Stephane Eranian <eranian@hpl.hp.com>
  627. * updated elf_ia64_efi.lds to reflect new data sections
  628. created by gcc-3.3. Patch provided by Andreas Schwab from Suse.
  629. 2003-06-20 Stephane Eranian <eranian@hpl.hp.com>
  630. * updated elf_ia64_efi.lds and elf_ia32_efi.lds to include
  631. new types data sections produced by recent version of gcc-3.x
  632. 2002-02-22 Stephane Eranian <eranian@hpl.hp.com>
  633. * release 3.0a
  634. * modified both IA-64 and IA-32 loader scripts to add support for the
  635. new .rodata sections names (such as rodata.str2.8). Required
  636. for new versions of gcc3.x.
  637. 2001-06-20 Stephane Eranian <eranian@hpl.hp.com>
  638. * release 3.0
  639. * split gnu-efi package in two different packages: the libary+include+crt and the bootloader.
  640. * removed W2U() hack and related files to get from wide-char to unicode.
  641. * Use -fshort-wchar option for unicode.
  642. * restructured Makefiles now install under INSTALLROOT.
  643. 2001-04-06 Stephane Eranian <eranian@hpl.hp.com>
  644. * incorporated patches from David and Michael Johnston at Intel
  645. to get the package to compile for IA-32 linux target.
  646. * Fixed ELILO to compile for Ia-32 (does not execute yet, though):
  647. Makefile and start_kernel() function.
  648. 2001-04-06 Andreas Schwab <schwab@suse.de>
  649. * Fixed config.c to
  650. get the timeout directive to do something. implemented the global
  651. root= directive.
  652. * Fix the efi_main() to deal with the -C option properly
  653. 2001-04-05 Stephane Eranian <eranian@hpl.hp.com>
  654. * update efi library to latest EFI toolkit 1.02 as distributed
  655. by Intel. Fixed header + library files to compile with GCC
  656. * merged ELI and LILO (as of gnu-efi-1.1) together, mostly
  657. taking the config file feature of ELI.
  658. * renamed LILO to ELILO to make the distinction
  659. * restructured code to make it easier to understand and maintain
  660. * fixed FPSWA driver checking and loading: we try all possible
  661. files and let the driver itself figure out if it is the most
  662. recent.
  663. * added support for compression (gzip) but keep support for plain
  664. ELF image. ELILO autodetects the format
  665. * change the way the kernel is invoked. Now we call it in
  666. physical memory mode. This breaks the dependency between the
  667. kernel code and the loader. No more lilo_start.c madness.
  668. * changed the way the boot_params are passed. We don't use the
  669. ZERO_PAGE_ADDR trick anymore. Instead we use EFI runtime memory.
  670. The address of the structure is passed to the kernel in r28
  671. by our convention.
  672. * released as gnu-efi-2.0
  673. 2001-04-03 David Mosberger <davidm@hpl.hp.com>
  674. * gnuefi/reloc_ia32.c (_relocate): Change return type from "void"
  675. to "int". Return error status if relocation fails for some
  676. reason.
  677. * gnuefi/elf_ia32_efi.lds: Drop unneeded ".rel.reloc" section.
  678. * gnuefi/crt0-efi-ia32.S (_start): Exit if _relocate() returns with
  679. non-zero exit status.
  680. * inc/ia32/efibind.h [__GNUC__]: Force 8-byte alignment for 64-bit
  681. types as that is what EFI appears to be expecting, despite the
  682. "#pragma pack()" at the beginning of the file!
  683. 2001-03-29 David Mosberger <davidm@hpl.hp.com>
  684. * gnuefi/reloc_ia32.c: Add a couple of defines to work around
  685. libc/efilib collision on uint64_t et al.
  686. (_relocate): Use ELF32_R_TYPE() instead of ELFW(R_TYPE)().
  687. * gnuefi/crt0-efi-ia32.S (dummy): Add a dummy relocation entry.
  688. 2001-03-29 David Mosberger <davidm@hpl.hp.com>
  689. * gnuefi/reloc_ia32.c: Add a couple of defines to work around
  690. libc/efilib collision on uint64_t et al.
  691. (_relocate): Use ELF32_R_TYPE() instead of ELFW(R_TYPE)().
  692. * gnuefi/crt0-efi-ia32.S (dummy): Add a dummy relocation entry.
  693. 2000-10-26 David Mosberger <davidm@hpl.hp.com>
  694. * gnuefi/elf_ia64_efi.lds: Mention .rela.sdata.
  695. * Make.defaults (CFLAGS): Remove -nostdinc flags so we can pick
  696. up the C compiler's stdarg.h.
  697. * inc/stdarg.h: Remove this file. It's not correct for gcc (nor
  698. most other optimizing compilers).
  699. 2000-10-10 Stephane Eranian <eranian@hpl.hp.com>
  700. * cleaned up the error message and printing of those.
  701. * added support to load the FPSWA from a file in case support is not
  702. present in the firmware already
  703. * fixed split_args() to do the right thing when you have leading spaces
  704. before kernel name
  705. * changed the argify() function to rely on \0 instead of LoadOptionSize
  706. as the field seems to be broken with current firmware
  707. * bumped version to 1.0
  708. 2000-10-04 David Mosberger <davidm@hpl.hp.com>
  709. * gnuefi/reloc_ia64.S: Reserve space for up to 750 function descriptors.
  710. * gnuefi/elf_ia64_efi.lds: Add .sdata section for small data and
  711. put __gp in the "middle" of it.
  712. * gnuefi/crt0-efi-ia64.S (_start): Use movl/add to load
  713. gp-relative addresses that could be out of the range of the addl
  714. offset.
  715. * gnuefi/reloc_ia64.S (_relocate): Ditto.
  716. * apps/Makefile: Remove standard rules and include Make.rules instead.
  717. * lilo/Makefile: Ditto.
  718. * Make.rules: New file.
  719. 2000-08-04 Stephane Eranian <eranian@hpl.hp.com>
  720. * released version 0.9
  721. * incorporated ACPI changes for Asuza by NEC < kouchi@hpc.bs1.fc.nec.co.jp>
  722. * added support for initrd (-i option) original ELI code from Bill Nottingham <notting@redhat.com>)
  723. * lots of cleanups
  724. * got rid of #ifdef LILO_DEBUG and uses macro instead
  725. * fix a few extra memory leaks in create_boot_params()
  726. * added exit capability just before starting the kernel
  727. 2000-06-22 David Mosberger <davidm@hpl.hp.com>
  728. * gnuefi/elf_ia64_efi.lds: Add .srodata, .ctors, .IA64.unwind,
  729. .IA64.unwind_info to .data section and .rela.ctors to .rela
  730. section.
  731. 2000-04-03 David Mosberger <davidm@hpl.hp.com>
  732. * lilo/lilo.c (LILO_VERSION): Up version number to 0.9.
  733. * gnuefi/elf_ia64_efi.lds: Include .IA_64.unwind and
  734. .IA_64.unwind_info in .data segment to avoid EFI load error
  735. "ImageAddress: pointer outside of image" error due to the .dynsym
  736. relocations against these sections.
  737. * ChangeLog: Moved from lilo/ChangeLogs.
  738. * gnuefi/reloc_ia64.S: fixed typo: .space directive had constant
  739. 100 hardcoded instead of using MAX_FUNCTION_DESCRIPTORS
  740. macro. Duh.
  741. 2000-03-17 Stephane Eranian <eranian@hpl.hp.com>
  742. * Released 0.8
  743. * replace the getopt.c with new version free with better license
  744. * created a documentation file
  745. * fix a couple of memory leaks
  746. * code cleanups
  747. * created a separate directory for lilo in the gnu-efi package.
  748. * added support for the BOOT_IMAGE argument to kernel
  749. * default is to build natively now