Eric W. Biederman [Sat, 9 Apr 2011 12:28:31 +0000 (05:28 -0700)]
lwip: In mem.h define mem_realloc as static inline
The intent was clearly for the compiler to inline
mem_realloc or else the defintion would have been placed
in a C file somewhere. gcc complains and since -Werr
is set the build fails when the function is just static.
So make the function static inline.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Fri, 18 Sep 2009 00:25:36 +0000 (17:25 -0700)]
Make sure TCP_WND is < 64K-TCP_MSS
Avoid an error "len would wrap tcp_wnd"
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 18 Sep 2009 00:06:34 +0000 (17:06 -0700)]
core: lwip: tune parameters for performance
With these tweaks, we are up from 6 Mbps to over 200 Mbps on a
back-to-back gigabit TCP connection.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Thu, 17 Sep 2009 02:56:39 +0000 (19:56 -0700)]
lwip: better test case
Download a large file from www3.kernel.org (Amsterdam) and time the
result.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Thu, 17 Sep 2009 00:48:26 +0000 (17:48 -0700)]
lwip: now to the point we can make a TCP connection...
lwip is now functional enough that TCP and DNS seem to work. More
tests still need to be done, though.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Thu, 17 Sep 2009 00:48:26 +0000 (17:48 -0700)]
lwip: Allow clearing a dns server
/*
* hpa: the lwip code has the dnsserver->addr != 0 test, but that would
* seem to indicate that there is no way to cancel a previously given
* DNS server...
*/
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Sat, 9 Apr 2011 10:55:50 +0000 (03:55 -0700)]
core pxe: Ensure all parameters in pxe_get_cached_info are initialized.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Wed, 16 Sep 2009 06:21:24 +0000 (23:21 -0700)]
core: pxe: additional work on the lwip port
Additional work on the lwip port. With this code, we can get pretty
far before having problems.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Sat, 9 Apr 2011 09:25:51 +0000 (02:25 -0700)]
core pxe: Switch threads if more than one runnable.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Sat, 9 Apr 2011 09:24:11 +0000 (02:24 -0700)]
core: pxeisr.inc: The name of the globals is pxe_irq_vector not pxe_irq_num
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Sat, 9 Apr 2011 09:23:44 +0000 (02:23 -0700)]
core thread: Make the code a little clearer.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Thu, 17 Sep 2009 00:47:02 +0000 (17:47 -0700)]
core: thread: return 0 from sem_down() if we didn't have to wait
Return 0 from sem_down if we passed right through the assembly code.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 11 Sep 2009 23:03:30 +0000 (16:03 -0700)]
core: pxe: don't switch to the PXE stack if we're on it...
Don't switch to the PXE stack if we are already on it. This can
happen if we take an interrupt inside the stack switch code.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 11 Sep 2009 22:46:43 +0000 (15:46 -0700)]
pxe: lwip: busy-wait if transmit is blocked for buffers
If we can't send a packet because of insufficient buffers, simply
busy-wait and keep trying.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 11 Sep 2009 22:43:52 +0000 (15:43 -0700)]
pxe: lwip: update data pointer after getting a secondary fragment
After we receive a secondary fragment we need to update the frame data
pointer.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Sun, 10 Apr 2011 04:16:21 +0000 (21:16 -0700)]
pxe: hook up the interrupt routine and the lwip receive routine
Hook up the interrupt routine to the lwip receive routine; this should
be able to receive packets as written.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Thu, 10 Sep 2009 20:23:46 +0000 (13:23 -0700)]
lwip: fix conflict with <netinet/in.h>
Fix a conflict with <netinet/in.h>.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Thu, 10 Sep 2009 20:21:53 +0000 (13:21 -0700)]
lwip: undiif - initial cut at a UNDI Ethernet-only driver
Initial cut at an UNDI driver -- still needs to be reworked to handle
the receive side. For now, assume the underlying interface is
Ethernet; supporting generic media types will require changes to the
ARP handling in lwIP.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Fri, 8 Apr 2011 10:01:26 +0000 (03:01 -0700)]
pxe: Move the gpxe url reading code into it's own file.
Now that we have method pointers there is no longer any reason
to clutter up pxe.c with tftp specific details.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 09:53:28 +0000 (02:53 -0700)]
pxe: Move the tftp implementation into it's own file
Now that we have method pointers there is no longer any reason
to clutter up pxe.c with tftp specific details.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 09:13:15 +0000 (02:13 -0700)]
pxe: Add methods to abstract out the connection type.
The gpxe handling has already found the places where
we need to have different code to handle different
connection types. So add function pointers into
struct pxe_pvt_inode for each of those places and
cleanup the code to call those new functions.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Sat, 9 Apr 2011 08:36:10 +0000 (01:36 -0700)]
pxe: Statically initialize pxe_receive_thread_sem
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 06:50:31 +0000 (23:50 -0700)]
core: pxe: pm_return Use jiffies_t
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Tue, 15 Sep 2009 01:07:38 +0000 (18:07 -0700)]
core: add .stack16 to layout.inc
It seems to get the right flags by default, but since .stack needed it
we might as well put in .stack16 too...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Tue, 15 Sep 2009 01:05:41 +0000 (18:05 -0700)]
core: add .stack to layout.inc so it gets the proper flags
Add the .stack segment to layout.inc even as just a dummy, so that we
end up with the correct flags in the output.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Sun, 13 Sep 2009 22:16:00 +0000 (15:16 -0700)]
core: pxeisr.inc: fix compatibility with older versions of NASM
Older versions of NASM require "global" to precede the symbol
definition.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 11 Sep 2009 00:51:05 +0000 (17:51 -0700)]
core: pxe: pm return hook to examine timer ticks and PXE ISR status
When returning to protected mode, check to see if we have any pending
actions due to interrupts.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 11 Sep 2009 00:47:36 +0000 (17:47 -0700)]
core: add a way to invoke a function on return to protmode
Add a hook so we can invoke a protmode function immediately before
enabling interrupts on the way back from protected mode. This will
*not* be invoked if we are more than one level deep (i.e.
[RM(0) ->] PM(0) -> RM(1) -> PM(1) -> RM(2) will not invoke the hook
when returning to PM(1).) This is intended to provide a hook for
taking an action after a real-mode interrupt did something, i.e. the
PXE receive ISR or the timer tick.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 11 Sep 2009 00:03:23 +0000 (17:03 -0700)]
core: pxe: real-mode interrupt service routine
Real-mode interrupt service routine for PXE. All it does is poll the
PXE stack, sets a flag, then issues EOI. It is then up to the PM
stack to wake up the receive thread and process the packet receives.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Fri, 8 Apr 2011 22:57:11 +0000 (15:57 -0700)]
lwip: Enable thread support
Now that all of the syslinux support code has been built for
threads enable using that support in lwip.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Sat, 9 Apr 2011 12:42:22 +0000 (05:42 -0700)]
core: Make the core malloc and free thread safe.
Add a single semaphore to make malloc and free thread safe.
This is code I extracted from hpa's earlier effort at
importing lwip into syslinux.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 22:24:20 +0000 (15:24 -0700)]
core thread: Don't include core.h from thread.h
core.h brings in a lot of symbols and causes conflicts when
included into lwip, in particular conflicts on the symbol
lfree.
So do the simple thing and simplify what thread.h brings in to
reduce the change of symbol conflicts.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 22:20:26 +0000 (15:20 -0700)]
core: Move timer functions into timer.h
lwip gets symbol conflicts when we include all of core.h
so move the declaration of the timers into their own header
so that we can use those declartions in thread.h and so
we can use thread.h from lwip without having to deal with
symbol conflicts.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 22:16:38 +0000 (15:16 -0700)]
lwip: Use kaboom.h
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 22:13:26 +0000 (15:13 -0700)]
core: Move kaboom into it's own header.
This allows kaboom to be used by lwip without having to inclued all of core.h
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Tue, 15 Sep 2009 04:34:57 +0000 (21:34 -0700)]
core: thread: add a name field
Add a name field to struct thread, for debugging's sake.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Tue, 15 Sep 2009 04:34:57 +0000 (21:34 -0700)]
core: thread: add static declaration of semaphores
Add the ability to statically declare initialized semaphores.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Fri, 11 Sep 2009 00:50:26 +0000 (17:50 -0700)]
thread: add support for locking the scheduler
Add support for locking the scheduler; this is needed for the pm
return hook to operate properly.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Fri, 8 Apr 2011 12:31:41 +0000 (05:31 -0700)]
core thread: Rename timeouts pvt to better reflect it's use.
lwip needs to find a per thread list of timeouts when it calls
sys_arch_thread_timeouts(). Since we support threads we
can easily support this extra bit of private data.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Thu, 10 Sep 2009 05:24:55 +0000 (22:24 -0700)]
core: thread: add a "timeouts" pointer to the thread structure
Add a "timeouts" pointer to the thread structure; this is a private
per-thread pointer for the benefit of lwIP. This is ad hoc, but a lot
easier than implementing TLS.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Thu, 10 Sep 2009 04:34:28 +0000 (21:34 -0700)]
core: thread: move most thread state to stack; task switch errno
Move most our thread state to the stack. Task switch the errno
variable.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Sat, 9 Apr 2011 12:45:55 +0000 (05:45 -0700)]
core: thread: Add a global errno variable to support lwip
I don't have a clue why Peter's earlier port did not run into
problems but I can't get thread_asm.S to link without this.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Wed, 9 Sep 2009 23:29:15 +0000 (16:29 -0700)]
core: thread: merge mbox_post() and mbox_trypost()
Merge mbox_post() and mbox_trypost() into a single function with a
timeout parameter.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 9 Sep 2009 19:25:04 +0000 (12:25 -0700)]
core: add simple mailbox library
A very simple mailbox library, designed for lwIP porting.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 9 Sep 2009 19:23:21 +0000 (12:23 -0700)]
core: thread: add option to not wait on a semaphore at all
Implement a "trywait" option... if timeout is set to -1, then timeout
immediately if the semaphore isn't available.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 9 Sep 2009 16:07:58 +0000 (09:07 -0700)]
core: thread: have start_thread() allocate memory dynamically
Have start_thread() allocate memory dynamically, using malloc().
XXX: should probably free that memory in __exit_thread()... could be
"interesting".
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 9 Sep 2009 04:06:34 +0000 (21:06 -0700)]
core: simple thread library
Simple thread library with the intent of making lwIP easier to port.
-- Modified to use milliseconds instead of jiffies,
as lwIP expresses everything in milliseconds. EWB
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 05:52:57 +0000 (22:52 -0700)]
core: declare jiffies_t and mstime_t and use them.
Create specific types for jiffies and for the output of the
millisecond timer and use them where appropriate in the code
base.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
H. Peter Anvin [Wed, 9 Sep 2009 04:05:24 +0000 (21:05 -0700)]
stddef.h: add container_of()
Add the container_of() macro.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Eric W. Biederman [Fri, 8 Apr 2011 11:38:59 +0000 (04:38 -0700)]
lwip: Minimal configuration to get lwip building in syslinux
- Disable all of lwip advanced features
- Redeclare kaboom because including core.h causes the
artificial namespace conflict on lfree.
t
lfree is a global sylinux function and lwip static variable.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 11:42:52 +0000 (04:42 -0700)]
lwip: Delete the ipv6 support and the tests.
The ipv6 suppport has duplicate symbol names and will
cause conflicts if built.
Similarly the tests are unneeded and require an unknown about
of extra configuration to get the working to no apparent purpose.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 11:12:52 +0000 (04:12 -0700)]
lwip: Import lwip version 1.3.2
Peter's comment on the import of 1.3.1 was:
> Import the lwip TCP/IP stack, with the intent to use it instead of
> raw PXE calls in PXELINUX. Lots of work to be done here, though.
I am taking Peters original mostly working port updating it to
the newest syslinux and the most recent stable version of lwip
and seeing if I can get a usable mergable version
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Eric W. Biederman [Fri, 8 Apr 2011 10:38:36 +0000 (03:38 -0700)]
core: Makefile don't worry about how deep the files are
In preparation for importing lwip modify the makefile
to not care how deeply nested the source files are in the
tree.
H. Peter Anvin [Tue, 5 Apr 2011 00:38:18 +0000 (17:38 -0700)]
diskstart: Add a pointer to the syslinux_banner to the EPA
For the benefit of third-party tools, add a pointer to the
syslinux_banner in the extended patch area.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Mon, 4 Apr 2011 23:43:10 +0000 (16:43 -0700)]
com32, bitops: proper constraint for byte-sized output
The proper output for the byte-sized output of "setc" is "=qm".
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 4 Apr 2011 23:31:55 +0000 (16:31 -0700)]
NEWS: iso9660 also had issues with ../ paths.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 4 Apr 2011 23:22:38 +0000 (16:22 -0700)]
core: Adjust formatting around the date string
Adjust the formatting around the date string to avoid missing and
duplicated spaces.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Mon, 4 Apr 2011 23:17:48 +0000 (16:17 -0700)]
tinyjpeg: change DEBUG to JPEG_DEBUG
Rename the debugging option for tinyjpeg to JPEG_DEBUG to avoid
conflict with the global dprintf option.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Mon, 4 Apr 2011 23:14:37 +0000 (16:14 -0700)]
iso9660: use generic_mangle_name
There is no longer any need to do special name-mangling for iso9660,
and doing so, in fact, breaks the handling of paths starting with ../.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Mon, 4 Apr 2011 22:48:45 +0000 (15:48 -0700)]
NEWS: Handle .. support for VFAT
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Rich Mahn [Mon, 4 Apr 2011 22:46:06 +0000 (15:46 -0700)]
vfat: Fix mangling of directory names starting with ..
We need to handle directory names starting with .. correctly.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Mon, 4 Apr 2011 20:11:13 +0000 (13:11 -0700)]
NEWS: update the NEWS file
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Mon, 4 Apr 2011 20:10:49 +0000 (13:10 -0700)]
pxe: disable the "force INT 18h" hack
It seems to break as many machines as it fixes, so disable it for now.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Mon, 4 Apr 2011 17:36:12 +0000 (10:36 -0700)]
com32, bitops: an "m" constraint takes an object, not a pointer to one
The argument to an "m" constraint is an object, not a pointer to an
object. For a void pointer it needs to be cast to an indirectable
type (like char) and then indirected.
Reported-by: Matt Fleming <matt.fleming@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 4 Apr 2011 17:31:09 +0000 (10:31 -0700)]
com32: fix range handling in vsscanf
Fix multiple errors in building the bitmap for ranges in %[.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 4 Apr 2011 16:58:44 +0000 (09:58 -0700)]
bitops: the bt instructions returns result in CF, not ZF
The bit test instructions returns the tested bit in CF, not the
inverse of the tested bit in ZF. I don't know how I got that idea...
Reported-by: Matt Fleming <matt.fleming@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Sun, 3 Apr 2011 23:22:42 +0000 (16:22 -0700)]
diskstart: Move DATE_STR out of sector 1
Save a few bytes in sector 1 by moving DATE_STR out. This string can
be fairly long especially when using a git tree.
Reported-by: Matt Fleming <matt.fleming@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 1 Apr 2011 23:53:22 +0000 (16:53 -0700)]
Merge remote-tracking branch 'genec/memdiskdbg-for-sha0'
Gene Cumm [Fri, 1 Apr 2011 23:49:54 +0000 (19:49 -0400)]
memdisk/dskprobe.c: Add status check to probes 08h and 41h
If this fails, the machine should never be working.
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
H. Peter Anvin [Fri, 1 Apr 2011 22:51:49 +0000 (15:51 -0700)]
Merge remote-tracking branch 'genec/diag-mbr-handoff-for-hpa'
H. Peter Anvin [Fri, 1 Apr 2011 22:51:46 +0000 (15:51 -0700)]
Merge remote-tracking branch 'genec/diag-geodsp-for-hpa'
H. Peter Anvin [Fri, 1 Apr 2011 20:08:40 +0000 (13:08 -0700)]
gpxe: Inhibit parallel make
Don't parallel make the gpxe directory.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Sebastian Herbszt [Wed, 30 Mar 2011 21:41:08 +0000 (23:41 +0200)]
Update .gitignore
Add *.img, *.img.xz and mk-lba-img to .gitignore.
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Fri, 1 Apr 2011 20:05:24 +0000 (13:05 -0700)]
Merge remote-tracking branch 'sherbszt/gfxboot32'
H. Peter Anvin [Fri, 1 Apr 2011 19:59:04 +0000 (12:59 -0700)]
ld: Use ABSOLUTE() when taking differences between relative symbols
binutils 2.21.51.0.6, and possibly other versions, generate the wrong
result when subtracting two section-relative symbols (the final result
ends up having the base of the section incorrectly added to it.) Work
around this by using ABSOLUTE() on the symbols to force the result to
become absolute.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Sebastian Herbszt [Wed, 30 Mar 2011 21:09:32 +0000 (23:09 +0200)]
gfxboot: remove save_read() function
Remove the no longer needed save_read() function.
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Sebastian Herbszt [Wed, 30 Mar 2011 20:57:55 +0000 (22:57 +0200)]
gfxboot: remove lowmem_buf_size variable
Remove the no longer needed lowmem_buf_size variable.
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Sebastian Herbszt [Wed, 30 Mar 2011 20:51:10 +0000 (22:51 +0200)]
gfxboot: don't use the bounce buffer
Allocate lowmem buffer instead of using the bounce buffer.
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Sebastian Herbszt [Wed, 30 Mar 2011 18:33:49 +0000 (20:33 +0200)]
gfxboot: use skipspace()
Use skipspace() instead of local skip_spaces().
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Gene Cumm [Tue, 29 Mar 2011 22:35:18 +0000 (18:35 -0400)]
diag/geodsp/README: Additional use notes
H. Peter Anvin [Tue, 29 Mar 2011 21:45:22 +0000 (14:45 -0700)]
Merge remote-tracking branch 'mcb30/empty-tftp-ip'
Michael Brown [Mon, 28 Mar 2011 19:44:17 +0000 (20:44 +0100)]
pxe: allow TFTP server IP to be empty when not using TFTP
Reported-by: Marcus Grando <Marcus.Grando@corp.terra.com.br>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Gene Cumm [Sun, 27 Mar 2011 12:36:19 +0000 (08:36 -0400)]
diag/mbr/handoff: Add optional printing of floppy descriptor
Gene Cumm [Sun, 27 Mar 2011 12:32:05 +0000 (08:32 -0400)]
diag/mbr/handoff: Code comments; reflow output
The printing of CR/LF was misplaced such that it'd print a blank line if
no PnP data was found.
H. Peter Anvin [Fri, 18 Mar 2011 17:55:11 +0000 (10:55 -0700)]
linux.c32: For protocol 2.10+, use init_size when relocating
If we have to relocate the kernel, use the init_size parameter if it
is available, rather than an arbitrary fudge factor.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
H. Peter Anvin [Thu, 17 Mar 2011 22:26:16 +0000 (15:26 -0700)]
gpxe: Make the build parallel-safe
Make sure we don't have multiple build processes wrecking havoc in the
gpxe directory.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Thu, 17 Mar 2011 18:58:35 +0000 (11:58 -0700)]
Merge remote-tracking branch 'genec/gpxelinux-kpxe-for-hpa'
Gene Cumm [Thu, 17 Mar 2011 18:46:43 +0000 (14:46 -0400)]
Makefile: Add gpxe/gpxelinuxk.0 to INSTALL_AUX
H. Peter Anvin [Thu, 17 Mar 2011 00:28:10 +0000 (17:28 -0700)]
core/Makefile: another attempt at dealing with GNU make 3.82
Trying another tack...
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Gene Cumm [Thu, 17 Mar 2011 00:14:03 +0000 (20:14 -0400)]
Makefile: Add diag/geodsp/ .xz images to install target
Gene Cumm [Thu, 17 Mar 2011 00:01:36 +0000 (20:01 -0400)]
Merge branch 'master' into diag-mbr-handoff-for-hpa
Conflicts:
diag/mbr/handoff.S
diag/mbr/handoff.S: Remove the attempt to zero pad/prevent overflow
Gene Cumm [Wed, 16 Mar 2011 21:26:23 +0000 (17:26 -0400)]
Add diag/ targets into top Makefile for install target
Gene Cumm [Wed, 16 Mar 2011 21:16:54 +0000 (17:16 -0400)]
diag/mbr/: use checksize.pl to pad/prevent overflow
HPA noticed that using Fedora 15 Alpha and gcc-4.6 broke on this code
H. Peter Anvin [Wed, 16 Mar 2011 20:58:42 +0000 (13:58 -0700)]
diag/geodsp/Makefile: use ./ to run a file in the current dir
When running a file in the current directory, use ./ as a prefix.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 16 Mar 2011 20:56:57 +0000 (13:56 -0700)]
Makefile: build the diag directory
Build the diag directory (diagnostic aids).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 16 Mar 2011 20:56:10 +0000 (13:56 -0700)]
diag/mbr/handoff.S: Fix compilation problems with gas 2.21.51
The construct used for zero-padding in handoff.S doesn't work with gas
2.21.51.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 16 Mar 2011 20:52:58 +0000 (13:52 -0700)]
Merge remote-tracking branch 'genec/diag-geodsp-for-hpa'
H. Peter Anvin [Wed, 16 Mar 2011 20:52:23 +0000 (13:52 -0700)]
NEWS: Document isohdpfx*.bin available.
H. Peter Anvin [Wed, 16 Mar 2011 20:50:41 +0000 (13:50 -0700)]
mbr: Install isohdpfx*.bin
GNU xorriso can build isohybrid images in one step without the need
for the isohybrid program, but for that to work the isohdpfx*.bin
files need to be available.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 16 Mar 2011 20:48:31 +0000 (13:48 -0700)]
README: update copyright to 2011
Signed-off-by: H. Peter Anvin <hpa@zytor.com>