<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openslx-ng/ipxe.git/src/util, branch v0.9.5</title>
<subtitle>Fork of ipxe; additional commands and features</subtitle>
<id>https://git.openslx.org/openslx-ng/ipxe.git/atom/src/util?h=v0.9.5</id>
<link rel='self' href='https://git.openslx.org/openslx-ng/ipxe.git/atom/src/util?h=v0.9.5'/>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/'/>
<updated>2008-09-04T10:29:37+00:00</updated>
<entry>
<title>[util] Avoid calling fclose(NULL) in zbin.c</title>
<updated>2008-09-04T10:29:37+00:00</updated>
<author>
<name>Eygene Ryabinkin</name>
</author>
<published>2008-08-31T18:17:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=6de45ad4ae65d1754abaee4d5e92851b7b40c9b5'/>
<id>urn:sha1:6de45ad4ae65d1754abaee4d5e92851b7b40c9b5</id>
<content type='text'>
Must check that argument to a fclose() is not NULL -- we can get to the
'err' label when file was not opened.  fclose(NULL) is known to produce
core dump on some platforms and we don't want zbin to fail so loudly.

Signed-off-by: Eygene Ryabinkin &lt;rea-fbsd@codelabs.ru&gt;
</content>
</entry>
<entry>
<title>[util] Fix interpretation of short jumps in Option::ROM</title>
<updated>2008-08-27T19:36:30+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2008-08-27T19:36:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=bd5189a96d88a27f8c7da29491876ec3790af138'/>
<id>urn:sha1:bd5189a96d88a27f8c7da29491876ec3790af138</id>
<content type='text'>
Option::ROM was assuming that ROM images using a short jump
instruction for the init entry point would have a zero byte at offset
5; this is not necessarily true.
</content>
</entry>
<entry>
<title>[util] Allow Option::ROM to understand and modify initialisation entry point</title>
<updated>2008-08-15T03:10:35+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2008-08-15T03:10:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=23bca8f9d86da54859996acb07a0bc07daee4955'/>
<id>urn:sha1:23bca8f9d86da54859996acb07a0bc07daee4955</id>
<content type='text'>
Add support for manipulating the jump instruction that forms the
option ROM initialisation entry point, so that mergerom.pl can treat
it just like other entry points.

Add support for merging the initialisation entry point (and IBM BOFM
table) to mergerom.pl; this is another slightly icky but unfortunately
necessary GPL vs. NDA workaround.  When mergerom.pl replaces an entry
point in the original ROM, it now fills in the corresponding entry
point in the merged ROM with the original value; this allows (for
example) a merged initialisation entry point to do some processing and
then jump back to the original entry point.
</content>
</entry>
<entry>
<title>[util] Add mergerom.pl</title>
<updated>2008-07-31T05:28:46+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2008-07-31T05:28:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=12a37ab99ef4e2b198c8f7cd589f4c1a3c74f57f'/>
<id>urn:sha1:12a37ab99ef4e2b198c8f7cd589f4c1a3c74f57f</id>
<content type='text'>
This utility is required as a workaround for legal restrictions on
including GPL and non-GPL code within the same expansion ROM image.

While this is not encouraged, we are prepared to accept that
concatenation of ROM images and updating of the ROM header data
structures can be classed as "mere aggregation" within the terms of
the GPL.

If in any doubt, assume that you cannot include GPL and non-GPL code
within the same expansion ROM image.  Contact the Etherboot team for
clarification on your specific circumstances.
</content>
</entry>
<entry>
<title>[util] Add Option::ROM library and rewrite disrom.pl to use it.</title>
<updated>2008-07-31T04:30:04+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2008-07-31T04:28:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=6f73bb5e003db7195952c0ac297ac859531fa8e8'/>
<id>urn:sha1:6f73bb5e003db7195952c0ac297ac859531fa8e8</id>
<content type='text'>
The Option::ROM module provides an easy way to read and edit fields
within option ROM headers.
</content>
</entry>
<entry>
<title>[util] config-local.h to avoid accidental commits</title>
<updated>2008-06-04T23:45:33+00:00</updated>
<author>
<name>Stefan Hajnoczi</name>
</author>
<published>2008-06-04T19:56:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=f866b179988f686ae90c197f0270a922ddebf718'/>
<id>urn:sha1:f866b179988f686ae90c197f0270a922ddebf718</id>
<content type='text'>
During development it is often handy to change the config.h options from
their defaults, for example to enable debugging features.

To prevent accidental commits of debugging config.h changes, mdc
suggested having a config-local.h that is excluded from source control.
This file acts as a temporary config.h and can override any of the
defaults.

This commit is an attempt to implement the config-local.h feature.

The config.h file now has the following as its last line:
/* @TRYSOURCE config-local.h */

The @TRYSOURCE directive causes config-local.h to be included at that
point in the file.  If config-local.h does not exist, no error will be
printed and parsing will continue as normal.  Therefore, mkconfig.pl is
"trying" to "source" config-local.h.
</content>
</entry>
<entry>
<title>[Makefile] Use bin/VVVVDDDD.rom instead of bin/pci_VVVV_DDDD.rom</title>
<updated>2008-03-06T15:37:34+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2008-03-06T15:37:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=fad35829ebcaff28e5f815f5e3b4a98d96b4477b'/>
<id>urn:sha1:fad35829ebcaff28e5f815f5e3b4a98d96b4477b</id>
<content type='text'>
The generate-by-PCI-device-ID rules (bin/pci_VVVV_DDDD.rom) are generally
used for building actual ROM images to be burned, and the burning
utilities generally run under some DOS variant.  Change the filename from
pci_VVVV_DDDD.rom to VVVVDDDD.rom so that it is compatible with the DOS
8.3-character filename limit.
</content>
</entry>
<entry>
<title>Add bin/pci_VVVV_DDDD target to allow building ROM images without</title>
<updated>2007-11-19T20:14:20+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2007-11-19T20:14:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=a1e243d504a9348ed0afbb53aa345ba1eed99965'/>
<id>urn:sha1:a1e243d504a9348ed0afbb53aa345ba1eed99965</id>
<content type='text'>
needing to know the gPXE internal ROM name.
</content>
</entry>
<entry>
<title>Produce no output unless -v is specified or an error occurs.</title>
<updated>2007-07-17T00:59:48+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2007-07-17T00:59:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=cb237819ca158300a7ff83d40b29a1ac62743c0d'/>
<id>urn:sha1:cb237819ca158300a7ff83d40b29a1ac62743c0d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Restore the "shared symbol found only in a single object should be</title>
<updated>2007-07-17T00:39:06+00:00</updated>
<author>
<name>Michael Brown</name>
</author>
<published>2007-07-17T00:39:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/openslx-ng/ipxe.git/commit/?id=19904804da505ab8896fc0179aec3452dc9a88b5'/>
<id>urn:sha1:19904804da505ab8896fc0179aec3452dc9a88b5</id>
<content type='text'>
treated as being provided by that object" code.
</content>
</entry>
</feed>
