Liu Aleaxander [Mon, 22 Jun 2009 21:17:15 +0000 (05:17 +0800)]
removes the %if IS_ISOLINUX stuff in the layout.inc
removes the %if IS_ISOLINUX stuff in the layout.inc to make the fs.c can find
the core_cache_buf symbol from ISOLINUX.
Liu Aleaxander [Mon, 22 Jun 2009 07:11:43 +0000 (15:11 +0800)]
Core:ISOLINUX: make the isolinux do the work
Liu Aleaxander [Sun, 21 Jun 2009 06:59:46 +0000 (14:59 +0800)]
Core:ISOLINUX: convert the isolinux.asm to C
Liu Aleaxander [Fri, 12 Jun 2009 21:56:55 +0000 (05:56 +0800)]
Core:EXTLINUX: move the header file in core into core/include
Liu Aleaxander [Fri, 12 Jun 2009 07:45:52 +0000 (15:45 +0800)]
Core: fix the not found error when type the kernel name without the extent.
it will not clear the zf flag when not found the right file, so it will give the
next file search(searching for a different filename extentsion the wrong answer,
so we need do it after every file searching.
well, in fact we should use EAX(the file lenght in bytes) or si(the open_file_t
structure pointer) to indicate if we have successfully found the file or not.
Liu Aleaxander [Thu, 11 Jun 2009 22:51:10 +0000 (06:51 +0800)]
Core: fix the menu display error
Well, it's a 'bug' that can be fixed easily fixed, that's just disable the
debug output. vesamenu.c32 will be messed up with the outputs.
Liu Aleaxander [Thu, 11 Jun 2009 07:54:43 +0000 (15:54 +0800)]
Core: make vfs do the work
it works, but it broke somewhere; it can't display the menu correctly.
Liu Aleaxander [Thu, 11 Jun 2009 02:47:04 +0000 (10:47 +0800)]
Core: add the skeleton fo VFS-like system
Two new files added; they are:
fs.h defines some basic vfs objects
fs.c defines the basic functions
Note: for now, it's just a skeleton, in another word, it can't compiled.
Liu Aleaxander [Tue, 9 Jun 2009 22:05:04 +0000 (06:05 +0800)]
Core:EXTLINUX: clean the WARNINGs
Liu Aleaxander [Tue, 9 Jun 2009 01:25:42 +0000 (09:25 +0800)]
Core:EXTLINUX: fix bug with lots of dots and searchdir
The bug hpa said in the email that prints lots of dots when loading a kernel fixed.
And with my test, I found that the searchdir couldn't return correctly while not find
what we wanna find.(In asm, the asm code use ZF flag to test if we successed. And I
thought regs->esi.w[0] = file(be zero on fail) will set ZF flag). Well, It's a good
thing that I found the reg structure has the eflags filed. then it works; nice thing!
Liu Aleaxander [Sat, 6 Jun 2009 23:43:32 +0000 (07:43 +0800)]
Core:EXTLINUX: clean the code
Liu Aleaxander [Sat, 6 Jun 2009 22:44:06 +0000 (06:44 +0800)]
Core:EXTLINUX: convert mangle name to C
Liu Aleaxander [Fri, 5 Jun 2009 22:04:16 +0000 (06:04 +0800)]
Core: move close_file function in getc.inc
because (I think) all the close_file are the same.
Liu Aleaxander [Fri, 5 Jun 2009 21:54:00 +0000 (05:54 +0800)]
Core:EXTLINUX: convert the getfssec function to C
the main file read function (getfssec) has been converted to
C. Fow now, abort 90% stuff have been converted to C. The
next is to clean the code and convert the rest.
Liu Aleaxander [Fri, 5 Jun 2009 01:29:13 +0000 (09:29 +0800)]
Core: Convert the searchdir function to C
for now, almost all the stuff related to EXT have been converted to C,
and fow my (limit) test, it works well.
The getfssec function haven't converted to C, because it also be called
from asm file, and I find it's a bit hard to convert it to C. But however,
it's my next plan.
Liu Aleaxander [Thu, 4 Jun 2009 23:29:20 +0000 (07:29 +0800)]
Core: Convert linsector and open_inode function to C
The two functions are converted to C.
And for another thing, I find that I haven't included the load_config.c file before(my fault),
so added it here.
Liu Aleaxander [Wed, 3 Jun 2009 22:18:46 +0000 (06:18 +0800)]
Core: forget to clean core_xfer_buf stuff absolutely
Liu Aleaxander [Wed, 3 Jun 2009 22:13:50 +0000 (06:13 +0800)]
Core: use __lowmem for sector read buffer exchange inseatd of core_xfer_buf
Liu Aleaxander [Wed, 3 Jun 2009 21:20:05 +0000 (05:20 +0800)]
Core: add two new data types, sector_t and block_t
and fixed some errors.
Liu Aleaxander [Wed, 3 Jun 2009 20:50:06 +0000 (04:50 +0800)]
CORE: Add two new file, disk.c, disk.h
extract the sector read functions to disk.c, and add SECTOR_SHIFT, SECTOR_SIZE
stuff in the disk.h as asked by hpa.
Liu Aleaxander [Wed, 3 Jun 2009 07:29:25 +0000 (15:29 +0800)]
add ext2 fs header file
Liu Aleaxander [Wed, 3 Jun 2009 07:26:27 +0000 (15:26 +0800)]
fix the error code style and something
Liu Aleaxander [Wed, 3 Jun 2009 06:56:09 +0000 (14:56 +0800)]
extract the geting fs information code in asm to a C function fs_init
we use fs_init to initialize the fs information
Liu Aleaxander [Wed, 3 Jun 2009 05:50:48 +0000 (13:50 +0800)]
Wrap the getlinsec function
Add a new function read_sectors, the only function will call getlinsec, so we can read sectors easily by calling read_sectors function
Liu Aleaxander [Wed, 3 Jun 2009 05:14:41 +0000 (13:14 +0800)]
Convert the config load part to C
For now, I added a temporary file load_config.c that would be merged into
extlinux.c file later, which would make my later work be much easier.
And in order to get rid of the conflict noisy message from the open function
in ui.inc and the open function defined in the unistd.h, I changed the
open in core to core_open. It may be ugly, but it works :)
Liu Aleaxander [Tue, 2 Jun 2009 23:38:19 +0000 (07:38 +0800)]
printf error fixed
and removed the itao function as the printf function works well now
Liu Aleaxander [Tue, 2 Jun 2009 23:18:15 +0000 (07:18 +0800)]
Merge branch 'core32' of git://git.zytor.com/syslinux/syslinux into core32
Conflicts:
core/hello.c
core/include/core.h
core/layout.inc
H. Peter Anvin [Wed, 3 Jun 2009 02:56:27 +0000 (19:56 -0700)]
core/hello.c: better demo on how to do putchar()
Better illustrate how putchar() should be implemented...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Wed, 3 Jun 2009 00:09:41 +0000 (17:09 -0700)]
core: move xfer_buf_seg to segment 3, and add a collision assert
Move the xfer_buf_seg to segment 3 (0x30000) for now; this is more
generous than I hope we will use but makes development easier.
Add an assert to the linker script that the .auxseg/.lowmem segments
don't collide with xfer_buf_seg.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Tue, 2 Jun 2009 23:56:57 +0000 (16:56 -0700)]
core: handle section aliases in ld script; increase STACK32_LEN
Handle aliases that gcc generates in the ld script. Increase
STACK32_LEN to something a little more reasonable.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Tue, 2 Jun 2009 23:44:41 +0000 (16:44 -0700)]
core: add new __lowmem macro to allocate a static lowmem buffer
Add a new __lowmem macro that can be applied to an uninitialized
static (or global) object, which allocates it in a new .lowmem section
allocated below the 1 MB boundary. Keep in mind that low memory is
precious!
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Liu Aleaxander [Tue, 2 Jun 2009 20:42:41 +0000 (04:42 +0800)]
Successed in converting the cache code to C
It works well for extlinux(seems broken with ldlinux).
With the printf function can not work well in the format string, like %d,
I introduced a new function itoa(), that convert the number to string, for
debugging.
H. Peter Anvin [Tue, 2 Jun 2009 14:36:43 +0000 (07:36 -0700)]
Export the cache_seg to 32-bit code as core_cache_buf
Export the cache_seg to 32-bit code as core_cache_buf, so we can port
the cache to 32-bit code without porting its 16-bit clients immediately.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Tue, 2 Jun 2009 05:19:12 +0000 (22:19 -0700)]
core: call16(): simple wrapper to call 16-bit functions in the core
Simple wrapper to call 16-bit functions in the core (CS == 0, and
having a symbol, which is easiest modelled with a function prototype.)
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Liu Aleaxander [Tue, 2 Jun 2009 00:32:36 +0000 (08:32 +0800)]
Convert the cache code to C and implement the core printf function
for the cahce part, I do get the error message says that undefined reference
to `getlinsec'. I'm abort to implement a C version one.
for the printf function, it works somehow, but doesn't work well. With the test,
it seems it can handle the format output correctly. And I haven't debugged it,
so I have no idea for now.
H. Peter Anvin [Mon, 1 Jun 2009 22:08:34 +0000 (15:08 -0700)]
prepcore: make error() generate newline
Make error() automatically generate newline, to make the code a bit
cleaner looking.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 22:04:55 +0000 (15:04 -0700)]
prepcore: style cleanups
Style cleanups in lzo/prepcore.c. Add an error() function and an
error-checking zeroing memory allocator (xzalloc).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 21:47:45 +0000 (14:47 -0700)]
prepcore: error out if the compressed image is too large to load
Export, from each loader stage, the symbol MaxLMA which indicates to
prepcore how big the image is allowed to be. Change prepcore to
enforce this limit and to error out otherwise.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 05:25:50 +0000 (22:25 -0700)]
core/hello.c: use __intcall() as a demo
Use __intcall() to indicate that we now can use the same functions as
used in libcom32.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 05:24:42 +0000 (22:24 -0700)]
core: create an ersatz __com32 structure as expected by libcom32
To make it easier to mix libcom32 code into the core, create a __com32
structure to make the system call functions work correctly.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 05:23:54 +0000 (22:23 -0700)]
syslinux.ld: add a .got to the linker script
Add a .got section to the linker script, to cope with PIE code
imported from libcom32.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 05:23:11 +0000 (22:23 -0700)]
prepcore: actually do a full binary comparison on the output end
Do a full binary comparison between the decompressed output and what
we started with.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 04:55:09 +0000 (21:55 -0700)]
Merge branch 'master' into core32
Conflicts:
core/isolinux.asm
H. Peter Anvin [Mon, 1 Jun 2009 04:53:53 +0000 (21:53 -0700)]
Merge branch 'syslinux-3.8x'
Conflicts:
NEWS
H. Peter Anvin [Fri, 29 May 2009 22:47:20 +0000 (15:47 -0700)]
bin2hex: actually account for the number of bytes written
Unlike C, in Perl printf() doesn't return the number of bytes written.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 04:29:59 +0000 (21:29 -0700)]
isohdpfx: actually generate the stack frame isolinux expects
Actually generate the stack frame isolinux expects. This is not the
optimal order, but it appears to be what both earlier and later
versions of isolinux expects...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 04:29:12 +0000 (21:29 -0700)]
isolinux: can't clobber edx when dx contains the drive number...
Use ebx to hold the upper half of the partition offset, not edx.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 03:25:43 +0000 (20:25 -0700)]
NEWS: add changes since 3.81
H. Peter Anvin [Mon, 1 Jun 2009 03:23:58 +0000 (20:23 -0700)]
core: when calling abort_check, we're not idle
When we call abort_check, we're not idle even though we are polling
the keyboard. Handle that by calling reset_idle near the top.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 03:19:33 +0000 (20:19 -0700)]
isolinux: bsHidden can't be in data; it is set before checksumming
We cannot put bsHidden in initializated data, as it is set before we
run the global checksumming.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Mon, 1 Jun 2009 03:19:17 +0000 (20:19 -0700)]
version: next version will be 3.82
H. Peter Anvin [Mon, 1 Jun 2009 03:13:08 +0000 (20:13 -0700)]
isolinux: handle systems which disables interrupts in El Torito
At least one system has been identified which disables interrupts when
El Torito INT 13h is executed. Thus, save/restore IF around INT 13h.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Sun, 31 May 2009 18:12:48 +0000 (11:12 -0700)]
core: export a symbol for the raw address of xfer_buf_seg
Export a symbol (core_xfer_buf) for the linear address of the
xfer_bug_seg, for easier use in 32-bit code.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:52:02 +0000 (15:52 -0700)]
Merge branch 'master' into core32
Conflicts:
version
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:47:20 +0000 (15:47 -0700)]
bin2hex: actually account for the number of bytes written
Unlike C, in Perl printf() doesn't return the number of bytes written.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:41:43 +0000 (15:41 -0700)]
Assume the next version will be 3.82
H. Peter Anvin [Fri, 29 May 2009 22:26:38 +0000 (15:26 -0700)]
Merge branch 'master' into core32
H. Peter Anvin [Fri, 29 May 2009 22:25:40 +0000 (15:25 -0700)]
Add back spaces around ellipses in case statements
GNU C allows the ellipsis (...) to be used in case statements to
indicate a range. However, it requires spaces around it to be valid.
Nindent stripped those off, put them back.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:23:09 +0000 (15:23 -0700)]
Merge branch 'master' into core32
H. Peter Anvin [Fri, 29 May 2009 22:22:39 +0000 (15:22 -0700)]
Revert "Run Nindent on mbr/adjust.h"
This reverts commit
f3ae12c8f7a2af6656c613549555f2b08b2d9708.
adjust.h is an assembly file, not C.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:20:14 +0000 (15:20 -0700)]
Run Nindent on lzo/prepcore.c
Automatically reformat lzo/prepcore.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:20:14 +0000 (15:20 -0700)]
Run Nindent on core/rllpack.c
Automatically reformat core/rllpack.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:20:14 +0000 (15:20 -0700)]
Run Nindent on core/hello.c
Automatically reformat core/hello.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:16:22 +0000 (15:16 -0700)]
Merge branch 'master' into core32
Conflicts:
com32/include/netinet/in.h
com32/include/sys/cpu.h
dos/argv.c
dos/malloc.c
dos/syslinux.c
extlinux/main.c
libinstaller/setadv.c
libinstaller/syslinux.h
libinstaller/syslxint.h
libinstaller/syslxmod.c
linux/syslinux.c
mtools/syslinux.c
win32/syslinux.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)]
Run Nindent on win32/syslinux.c
Automatically reformat win32/syslinux.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)]
Run Nindent on win32/hello.c
Automatically reformat win32/hello.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)]
Run Nindent on utils/gethostip.c
Automatically reformat utils/gethostip.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)]
Run Nindent on sample/skipatou.c
Automatically reformat sample/skipatou.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)]
Run Nindent on sample/printf.c
Automatically reformat sample/printf.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)]
Run Nindent on sample/mdiskchk.c
Automatically reformat sample/mdiskchk.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:37 +0000 (15:10 -0700)]
Run Nindent on sample/hello2.c
Automatically reformat sample/hello2.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on sample/hello.c
Automatically reformat sample/hello.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on sample/filetest.c
Automatically reformat sample/filetest.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on sample/fd.c
Automatically reformat sample/fd.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on sample/conio.c
Automatically reformat sample/conio.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on sample/c32echo.c
Automatically reformat sample/c32echo.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on sample/atou.c
Automatically reformat sample/atou.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on mtools/syslinux.c
Automatically reformat mtools/syslinux.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/ymsend.h
Automatically reformat memdump/ymsend.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/ymsend.c
Automatically reformat memdump/ymsend.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/strtoul.c
Automatically reformat memdump/strtoul.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/string.h
Automatically reformat memdump/string.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/stdlib.h
Automatically reformat memdump/stdlib.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/stdio.h
Automatically reformat memdump/stdio.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/stdint.h
Automatically reformat memdump/stdint.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/skipatou.c
Automatically reformat memdump/skipatou.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/serial.c
Automatically reformat memdump/serial.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/printf.c
Automatically reformat memdump/printf.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/mystuff.h
Automatically reformat memdump/mystuff.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/malloc.h
Automatically reformat memdump/malloc.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/main.c
Automatically reformat memdump/main.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/io.h
Automatically reformat memdump/io.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/conio.c
Automatically reformat memdump/conio.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/argv.c
Automatically reformat memdump/argv.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/__udivmoddi4.c
Automatically reformat memdump/__udivmoddi4.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdump/__divdi3.c
Automatically reformat memdump/__divdi3.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdisk/unzip.c
Automatically reformat memdisk/unzip.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdisk/setup.c
Automatically reformat memdisk/setup.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)]
Run Nindent on memdisk/msetup.c
Automatically reformat memdisk/msetup.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
H. Peter Anvin [Fri, 29 May 2009 22:10:35 +0000 (15:10 -0700)]
Run Nindent on memdisk/memdisk.h
Automatically reformat memdisk/memdisk.h using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>