search for: pif_stepall

Displaying 5 results from an estimated 5 matches for "pif_stepall".

2013 Oct 18
0
[RFC/PATCH 1/3] Move partiter from com32/chain to com32/lib/syslinux
...if (iter->dos.bebr_index0 >= 0) { - error("More than 1 extended partition."); - iter->status = PI_INSANE; - return -1; - } - /* record base EBR index */ - iter->dos.bebr_index0 = iter->index0; - } - if (!ost_is_nondata(dp->ostype) || (iter->flags & PIF_STEPALL)) { - *lba = dp->start_lba; - *_dp = dp; - break; - } - } - - return 0; -} - -static int prep_base_ebr(struct part_iter *iter) -{ - struct disk_dos_part_entry *dp; - - if (iter->dos.bebr_index0 < 0) /* if we don't have base extended partition at all */ - return...
2015 Jul 22
0
[PULL 1/8] Move partiter from com32/chain to com32/lib/syslinux
...if (iter->dos.bebr_index0 >= 0) { - error("More than 1 extended partition."); - iter->status = PI_INSANE; - return -1; - } - /* record base EBR index */ - iter->dos.bebr_index0 = iter->index0; - } - if (!ost_is_nondata(dp->ostype) || (iter->flags & PIF_STEPALL)) { - *lba = dp->start_lba; - *_dp = dp; - break; - } - } - - return 0; -} - -static int prep_base_ebr(struct part_iter *iter) -{ - struct disk_dos_part_entry *dp; - - if (iter->dos.bebr_index0 < 0) /* if we don't have base extended partition at all */ - return...
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.
2015 Jul 22
13
[PULL 0/8] MultiFS suppport for BIOS and EFI
So last week I was wondering if XFS was still working -- even with its last on-disk structure changes -- and it _suprisingly_ worked as expected. Right, now I can finally get rid of GRUB and use Syslinux to boot my Linux on EFI from a rootfs with xfs. Shit, I have two partitions (the first one being the required ESP) so there is no way to access the other partitions since because Syslinux does not
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