search for: too_big

Displaying 3 results from an estimated 3 matches for "too_big".

2009 Aug 16
1
Chainc.32 missing some \n one error messages
...s/chain.c.new 2009-08-17 01:11:33.656402727 +0200 @@ -446,7 +446,7 @@ mmap = syslinux_memory_map(); if (!mmap) { - error("Cannot read system memory map"); + error("Cannot read system memory map\n"); return; } @@ -547,11 +547,11 @@ return; too_big: - error("Loader file too large"); + error("Loader file too large\n"); return; enomem: - error("Out of memory"); + error("Out of memory\n"); return; } @@ -614,7 +614,7 @@ } else if (!strncmp(argv[i], "seg=", 4)) {...
2009 Sep 29
0
Chainc.32 missing some \n one error messages
...-446,7 +446,7 @@ > mmap = syslinux_memory_map(); > > if (!mmap) { > - error("Cannot read system memory map"); > + error("Cannot read system memory map\n"); > return; > } > > @@ -547,11 +547,11 @@ > return; > > too_big: > - error("Loader file too large"); > + error("Loader file too large\n"); > return; > > enomem: > - error("Out of memory"); > + error("Out of memory\n"); > return; > } > > @@ -614,7 +614,7 @@ >...
2012 Nov 06
50
chain.c32 (and partiter) updates v2
This is a bit updated set of chain.c32 changes that simplifies a few things (and in partiter part), fixes few minor issues and adds a few new features. Details are in the following commits, below is the summary and pull details at the end. Shao - any chance to peek over them ? Most of those are relatively simple changes and well tested, though of course something might have slipped my attention.