similar to: The fsc branch merged into the elflink branch...

Displaying 20 results from an estimated 8000 matches similar to: "The fsc branch merged into the elflink branch..."

2010 Oct 02
4
[PATCH 0/4] some fixes on elflink branch
This is a small set of patches for elflink branch based on feng's elflink branch. hpa, It seems that I can't log on terminus by ssh at home. So I can't push these patches on my git tree. Liu Aleaxander (4): elflink: Cleanup some warnings elflink: Fix the wrong malloc size in enter_cmdline elflink: Do clear screen even if we have no pDraw_Menu method elflink: Add Ctrl-p +
2009 Dec 15
0
[GIT PULL] fsc branch
Hi hpa, For now, I have finished the all the generic VFS-layer, generic path searching and the dir stuff (you can use the dir.c32 module to list the entries in a specified directory) in all the current fs(pxelinux excluded). BTW, I just added a new git repo, called fsc.git, to be my main git repo. Well, in fact, it's a symlink of gsoc09_liu.git, so the both will work(I guess). hpa, should
2009 Apr 20
1
Announcing our 2009 Google Summer of Code students
Congratulations to our 2009 Google Summer of Code Students: Claudiu Mihail Liu Aleaxander Claudiu will work on CLI/parser migration to C, and Liu will work on ext4 support and filesystem migration to C. In combination, this should help get Syslinux into a much more portable state. We're looking forward to your work! -hpa
2011 Mar 16
0
[GIT PULL] elflink changes
Hi, I picked up the following patches from Liu Aleaxander that he sent to the mailing list last year. They add some new features to the command line interface code and fix a couple of bugs. The following changes since commit 9ded45991b4fc83b40af963feb773ddca2589d74: ldlinux: Parse and store the "onerror" command line (2011-03-09 14:32:36 +0000) are available in the git repository
2009 Aug 10
1
fsc branch: merged ldlinux.asm and extlinux; failing test
Hi, I merged ldlinux.asm and extlinux.asm on the fsc branch, observing that there were very little difference between them left. So far, so good. I found, however, a test which fails on the fsc branch (with or without the merge.) I have tracked it down to vfat_mangle_name() overwriting a bunch of random .bss16 memory, eventually including the CallbackSP variable.
2010 Oct 03
3
[PATCH 0/3] elflink: Another small fixes on CLI
Hi, This is a another small set of fixes about CLI on elflink branch. Liu Aleaxander (3): elflink: use 'input' as the prompt of the CLI elflink: Add ctrl-R key bind support elflink: handle the NULL return of edit_cmdline core/elflink/cli.c | 88 +++++++++++++++++++++++++++++++++++++++++--- core/elflink/load_env32.c | 4 ++- 2 files changed, 85 insertions(+), 7
2009 Jul 06
1
New elflink branch in the mainline repository
I have pulled in Stefan Bucur's updated elflink branch into the main Syslinux repository as the "elflink" branch, and fixed a couple of minor issues. Note in particular that I have *not* run Nindent over the sources... I will leave that to Stefan and Klaus unless there is a compelling reason to. Please note the following, however: int foo(); ... in C doesn't mean a function
2011 Mar 16
0
[GIT PULL] elflink compiler warning fixes
Hi, These patches fix some compiler warnings in ldlinux and elflink. I've tried to split the patches out so that they only change one file or one type of problem at once. So, if they do inadvertently introduce any bugs it should at least be easy to bisect to a smallish commit. The following changes since commit 9ded45991b4fc83b40af963feb773ddca2589d74: ldlinux: Parse and store the
2009 Oct 25
0
[fsc]Adding a generic path_lookup function in VFS
Hi hpa, I just added the generic path_lookup function for EXTLINUX. hpa, It changed a lot, so I want hear something from you. First , here is the main skeleton of the generic path_lookup function: > if (*name == '/') { > inode = this_fs->fs_ops->iget_root(); // The way to get the root > inode is different from different fs > while(*name == '/') >
2009 Aug 09
0
Fixed the "elflink" branch
It looks like I managed to screw up the push to the "elflink" branch I did yesterday night. I have fixed it now, and there is a current "elflink" branch which should contain KlausM's work as of last night. Sorry about that, -hpa -- H. Peter Anvin, Intel Open Source Technology Center I work for Intel. I don't speak on their behalf.
2012 Jun 26
2
[GIT PULL] elflink bug fixes
Hi Peter, Please pull the following changes. Paulo, I had to revert your "pxe: resolve names via DNS from protected-mode code" change because dns_resolv() is only implemented for PXELINUX and causes undefined symbol references for ISOLINUX, etc. Feel free to make the change again on top of the revert. The following changes since commit e7bd19def830e8341b1a100956345f1028740b9e:
2012 May 23
1
[GIT PULL] Remove duplicate COM32 modules
The following changes since commit 4fc3fd1e14f4c1b9208ef262e5b6aef853e9fce4: graphics: make use of syslinux_force_text_mode() (2012-05-19 02:05:38 -0300) are available in the git repository at: git://github.com/aericson/syslinux.git elflink for you to fetch changes up to 2779b713bdd8644ee2b52962ece6daa209b4ba6b: com32: remove duplicate modules (2012-05-22 20:59:51 -0300)
2011 Apr 01
0
[GIT PULL] elflink cmdline
Hi, The following patches are just copying some functionality that exists in the asm cmdline code into the C version. There's still a few more things to do but we're getting there. The following changes since commit 8c576f1fe03e34879921311f46613a35c6530000: Merge remote-tracking branch 'mfleming/for-hpa/elflink/fix-compiler-warnings' into elflink (2011-03-16 12:53:58 -0700)
2015 Mar 20
0
About Memory, COM32, and Dynamic Loading
> Hi there, > > Is there any updated document on COM32 format? > http://www.syslinux.org/doc/comboot.txt > > Is there any updated memory map? > http://www.syslinux.org/wiki/index.php/Memory_Map_(General) > > is there any updated info on Dynamic Module Loading Using the ELF Format? > http://www.syslinux.org/wiki/index.php/GSoC2008_Stefan > > Thanks, >
2012 Jul 01
1
[PATCH] elflink: fix return from execute()
Fix return from execute() if type == KT_NONE. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> --- com32/elflink/ldlinux/execute.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/com32/elflink/ldlinux/execute.c b/com32/elflink/ldlinux/execute.c index f713eb1..899154c 100644 --- a/com32/elflink/ldlinux/execute.c +++ b/com32/elflink/ldlinux/execute.c @@ -108,7
2009 Dec 18
2
[RFC][PATCH] fsc: convert the highmem.inc from assembly to C code
All, Here is a RFC patch for converting the highmem.inc to C code, which doesn't touch the core part. please help to review, thanks Thanks, Feng
2009 Dec 22
1
fsc: pxelinux.0 not working
pxelinux.0 from the fsc branch (syslinux-3.84-pre6-262-g03d6454) doesn't seem to work. Qemu exists with: qemu: fatal: Trying to execute code outside RAM or ROM at 0x6c620065 EAX=00103b88 EBX=00007ba2 ECX=00000000 EDX=0010399a ESI=00103590 EDI=f81b0000 EBP=00000000 ESP=0011ffe8 EIP=6c620065 EFL=00000202 [-------] CPL=0 II=0 A20=1 SMM=0 HLT=0 ES =0028 00000000 ffffffff 00cf9300 DPL=0 DS
2009 Sep 03
1
fsc branch: loop in pxe_idle_init() on qemu with pcnet card
syslinux-4.00-pre5-10-gdc10f7b locks up on qemu with pcnet card. The problem seems to be in pxe_idle_init(). Added debug output: dev_id: 10222000 before while loop h: 10 l: 0 h: 10 l: 0 e: 14e4166a h modified h: 350482265 l:0 h seems bogus as there are only 11 entries in pxe_need_idle_drain. if (e == dev_id) { found = true; break; } else if (e <
2012 May 04
3
[GIT PULL] elflink fixes
Peter, Paulo reported some problems with his config files under ISOLINUX and PXELINUX - basically TIMEOUT and TOTALTIMEOUT were broken. The patches I've pushed to the elflink branch fix this and also fix parsing of the ALLOWOPTIONS config directive. The following changes since commit d5e02fb16a11bfdbce1e90a39e6cb5f2ad925389: get_key: Valid key values are positive (2012-04-17 11:25:53
2011 Apr 01
1
[GIT PULL] elflink ldlinux
The following changes since commit 8c576f1fe03e34879921311f46613a35c6530000: Merge remote-tracking branch 'mfleming/for-hpa/elflink/fix-compiler-warnings' into elflink (2011-03-16 12:53:58 -0700) are available in the git repository at: git://git.zytor.com/users/mfleming/syslinux.git for-hpa/elflink/ldlinux Matt Fleming (1): ldlinux: Perform auto-boot if NOESCAPE set in config