search for: find_dp

Displaying 9 results from an estimated 9 matches for "find_dp".

2014 Jun 04
3
MultiFS syntax definition
On Wed, Jun 4, 2014 at 5:21 PM, H. Peter Anvin <hpa at zytor.com> wrote: > On 06/04/2014 11:09 AM, Raphael S Carvalho wrote: >> Before proceeding with the MultiFS patchset, let's discuss the MultiFS syntax. >> >> It's currently as follows: >> (hd[disk number]:[partition number])/path/to/file >> >> Any objections? >> > > As others
2014 Jun 29
0
[PATCH 3/6] chain/partiter: adjust error reporting
...a generic lib (similar to disklib) - though it has to be quieted first and provide strerr()-like functionality in place of its verbosity. diff --git a/com32/chain/chain.c b/com32/chain/chain.c index ae95d45..c08ec6e 100644 --- a/com32/chain/chain.c +++ b/com32/chain/chain.c @@ -352,7 +352,7 @@ int find_dp(struct part_iter **_iter) } while (!pi_next(iter)); /* broken part structure or other problems */ if (iter->status) { - error("Can't find myself on the drive I booted from."); + error("Unable to find partition with syslinux (fs)."); goto bail;...
2014 Jun 04
2
MultiFS syntax definition
...d into a new file. Which one does sound better >> to you? >Although the syntax parser (in option.c) doesn't assume the parentheses >neither the path post the closed parentheses, it's also bloated and >seems >not to fit well the MultiFS purposes. > >On the other hand, find_dp and its helper functions at chain.c could be >nicely re-used with a few changes. > >>> >>> -hpa >>> >>> >> >> >> >> -- >> Raphael S. Carvalho -- Sent from my mobile phone. Please pardon brevity and lack of formatting...
2016 Jul 17
0
[PATCH] Restore - chain.c32: Allow both "guid" and "uuid"
...or GPT "guid" --- com32/chain/chain.c | 3 ++- com32/chain/options.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/com32/chain/chain.c b/com32/chain/chain.c index 4e9e32d..492f21c 100644 --- a/com32/chain/chain.c +++ b/com32/chain/chain.c @@ -286,7 +286,8 @@ int find_dp(struct part_iter **_iter) error("Unable to find requested MBR signature."); goto bail; } - } else if (!strncmp(opt.drivename, "guid", 4)) { + } else if (!strncmp(opt.drivename, "guid", 4) || + !strncmp(opt.drivename, "uuid", 4...
2013 Jan 07
2
chain.c32 bug
i`ve found a bug in chain.c32 in v4.06. When i use isolinux it does not run windows7 installation, chainloading bootmgr. the error is: Can't find myself on the drive I booted from. chain.c32 from syslinux 3.xx works like a charm! chain.c32 from syslinux 5 shous tat this is not a com32 app
2014 Jun 04
0
MultiFS syntax definition
...b, > or common code pulled into a new file. Which one does sound better > to you? Although the syntax parser (in option.c) doesn't assume the parentheses neither the path post the closed parentheses, it's also bloated and seems not to fit well the MultiFS purposes. On the other hand, find_dp and its helper functions at chain.c could be nicely re-used with a few changes. >> >> -hpa >> >> > > > > -- > Raphael S. Carvalho -- Raphael S. Carvalho
2014 Jun 04
0
MultiFS syntax definition
...does sound better >>> to you? >>Although the syntax parser (in option.c) doesn't assume the parentheses >>neither the path post the closed parentheses, it's also bloated and >>seems >>not to fit well the MultiFS purposes. >> >>On the other hand, find_dp and its helper functions at chain.c could be >>nicely re-used with a few changes. >> >>>> >>>> -hpa >>>> >>>> >>> >>> >>> >>> -- >>> Raphael S. Carvalho > > -- > Sent from my mo...
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.
2014 Jun 29
10
[PATCH 0/6] chain.c32 patches
This small set fixes few bugs, improves gpt handling (under buggy conditions) and implements strict flag with more fine grained control which should fix issues with sanity checks against disk sizes. If this set is allright I'd want to do what I mentioned in older discussion with Ady - backport missing patches from 6.x to 5.x and 4.x so all versions have up to date chain version. Michal