similar to: 10-pre19 ok on pxelinux, w menu32

Displaying 20 results from an estimated 600 matches similar to: "10-pre19 ok on pxelinux, w menu32"

2005 Aug 21
2
pxelinux menu32 and two boot images
Hi, there now i am booting pxelinux menu32 with 2 boot images 1. DOS boot image 2. Thinstaion pxelinux and my directory structure is like this (Pxelinux with menu32) /tftpdroot/pxelinux.0 /tftpdroot/pxelinux.cfg/default /tftpdroot/dos.imz (DOS bootimage) /tftpdroot/memdisk (memdisk package) (Thinstation Pxelinux) /tftpdrooot/pxe/pxelinux.0 /tftpdroot/pxe/initrd
2006 Nov 14
2
isolinux menu32 (Re: Problems booting on Intel i9x5 motherboards.)
See: http://syslinux.zytor.com/archives/2006-May/006887.html I think I've tracked the problem down a bit more specifically. In edd.S when the kernel calls int 0x13 with %dl=80 [primary disk] & %al=1 [read one sector] and ah set to READ_SECTORS it never returns. However, the following code [which does drive diagnostics] works. mov $0x7E, %al call prtchr movw $0x0000, %ax movb
2014 Aug 11
2
testing out 6.03 network booting... (6.03-pre19)
On 08/11/2014 06:12 AM, Shantanu Gadgil wrote: > Hi all, > > I too am getting positive results using 6.03-pre19 lpxelinux.0, for the problem that I have been facing. > > The symptom was that booting hangs on client side. > On the server (DNSMasq TFTP) it keeps getting a request for the same (MAC address) file. > OR, alternatively it just stops completely. > > My
2014 Aug 11
0
testing out 6.03 network booting... (6.03-pre19)
Hi all, I too am getting positive results using 6.03-pre19 lpxelinux.0, for the problem that I have been facing. The symptom was that booting hangs on client side. On the server (DNSMasq TFTP) it keeps getting a request for the same (MAC address) file. OR, alternatively it just stops completely. My server: OptiPlex 755. BIOS A22 The PXE booting client: OptiPlex 960. BIOS A17 * Things are
2014 Aug 14
0
testing out 6.03 network booting... (6.03-pre19)
-------------------------------------------- On Mon, 8/11/14, H. Peter Anvin <hpa at zytor.com> wrote: Subject: Re: [syslinux] testing out 6.03 network booting... (6.03-pre19) To: "Shantanu Gadgil" <shantanugadgil at yahoo.com>, "syslinux at zytor.com" <syslinux at zytor.com> Date: Monday, August 11, 2014, 10:21 PM On 08/11/2014 06:12 AM, Shantanu
2005 Aug 22
0
SYSLINUX 3.10-pre19 -- definitely a release candidate
I just pushed out SYSLINUX 3.10-pre19. This version adds symlink support for EXTLINUX. As part of the process of implementing that, I ran into a somewhat embarrassing bug in the menu support, which I fixed, however, if any of you have a chance to test especially menu.c32 on as many derivatives as possible (SYSLINUX, PXELINUX, ISOLINUX, EXTLINUX) I would greatly appreciate it. I've done
2008 Jun 18
0
SYSLINUX 3.70-pre19 and the frozen USB keyboards
I have pushed out SYSLINUX 3.70-pre19. This includes a workaround that I have some early indications might actually resolve the "frozen USB keyboard" problem. If you have a system with this issue, I would *greatly* appreciate: a) if you could test it; b) if it works, if you could verify that 3.70-pre18 *DOESN'T* work. This would be incredibly useful! Thanks, -hpa
2014 Aug 18
0
testing out 6.03 network booting... (6.03-pre19)
> >? ? > > We are not ready for > "prime-time" though. > > Using > the "lpxelinux.0" file from 6.03-pre19 ... > > > > My RHEL5 installs, > when? using the "http://" for kernel, initrd and > append lines, seem to be hitting some sort of parameter > length limit. > > The culprit seems to be > the long
1999 Dec 23
0
Patch to make pre19 work with NetBSD
The pre19 code assumes that struct lastlog either exists in lastlog.h or isn't there. On NetBSD, struct lastlog is defined in utmp.h. Even worse, the non-lastlog code in login.h is terrible on NetBSD (since NetBSD doesn't have a ut_type struct member). With the patch below, openssh will compile and run on NetBSD again. Thanks, David --- configure.orig Tue Dec 21 06:51:22 1999 +++
2014 Aug 20
1
testing out 6.03 network booting... (6.03-pre19)
-------------------------------------------- On Mon, 8/18/14, Ady <ady-sf at hotmail.com> wrote: But then you report that typing in the exact same full command, it boots OK? I don't type the /complete/ command by hand. I let the error box popup and then I type in the missing 6 characters and then press ENTER. The installation then continues. Regards, Shantanu
2014 Aug 15
3
testing out 6.03 network booting... (6.03-pre19)
> > We are not ready for "prime-time" though. > Using the "lpxelinux.0" file from 6.03-pre19 ... > > My RHEL5 installs, when using the "http://" for kernel, initrd and append lines, seem to be hitting some sort of parameter length limit. > The culprit seems to be the long "append" line. > > The same append line, when NOT using
2004 Sep 08
1
escape char clutter makes prompt unreadable
hey folks, Im using pxelinux to boot a Soekris box (which works fine to a default image) Ive added a bunch of LABEL, KERNEL pairs, but I cant read the display; Im buried in escape codes. Ive captured some of it to a typescript file: it starts out kosher, but goes unreadable rather quickly, 0005520 \r T F T P . 0005540 / \b \r 0005560 *
2016 Aug 30
0
[PATCH] virtio_console: Stop doing DMA on the stack
virtio_console uses a small DMA buffer for control requests. Move that buffer into heap memory. Doing virtio DMA on the stack is normally okay on non-DMA-API virtio systems (which is currently most of them), but it breaks completely if the stack is virtually mapped. Tested by typing both directions using picocom aimed at /dev/hvc0. Signed-off-by: Andy Lutomirski <luto at kernel.org> ---
2016 Aug 30
0
[PATCH] virtio_console: Stop doing DMA on the stack
virtio_console uses a small DMA buffer for control requests. Move that buffer into heap memory. Doing virtio DMA on the stack is normally okay on non-DMA-API virtio systems (which is currently most of them), but it breaks completely if the stack is virtually mapped. Tested by typing both directions using picocom aimed at /dev/hvc0. Signed-off-by: Andy Lutomirski <luto at kernel.org> ---
2009 Jul 15
2
bug or user error - menu.c32 in syslinux-3.62-pre11
Im trying to use newer simple-menu features, and have found that the following config-file (closely based on wiki pxelinux example) - fails for 3.62-pre11, - works for 3.62-pre10 where 'working' is successive reloads such that re-edits of file are seen on next reload and broken is issuing this error: Initial menu has no LABEL entries! boot: #>
2005 Jun 08
2
unknown boot options on kernel command line.
changing i386 COMMAND_LINE_SIZE to 1024 attached is a simplistic fix to change kernel's command-line size from 256 to 1024, tomatch capability in syslinux 3.08. It seems to work. Is this all there is to it ? One of the reasons I did this was to figure out what extra options are appearing, and why. b4 extending: (the last bit is truncated) Jun 4 06:31:05 truck kernel: Kernel command
2007 Mar 08
2
Hotkey between Xorg and Wine applications
Hello! I'm trying to install a Windows application called Macro Express, wich automatizes a lot of process with recorded macros. The macros are called by pressing Hotkeys combinations like Control+1 or Control+2 etc. Then, the macro sends keys to applications. I have installed the program on kubuntu and Wine 0.9.30. The problems are that it only regonizes Hotkeys when Macro Express window is
2003 Jun 18
2
Re: rw1071 - cut and paste bug (PR#3285)
On Wed, 18 Jun 03 09:39:42 EDT, you wrote in message <200306181351.h5IDpEOC122970@northrelay03.pok.ibm.com>: >I have installed the binary of R-1.7.1 for Windows from CRAN. After >using the Cut or Paste buttons the R Console window does not respond >to keyboard input; the window can be reactivated by switching to another >window and back to the R console. Cutting and pasting
2010 Nov 17
1
Tinn-R looses connection to R (Windows Vista)
Hi everyone, I wonder, if anyone can help me with this annoying issue, although it is related to Tinn-R and Windows Vista... I am running R 2.11.1 and Tinn-R 2.3.5.2 together. I saved 2 R-hotkeys: ALT+A for sending the whole content of one file and ALT+S for a selection from one file from Tinn-R to R. Everything works fine with other windows versions, also with Vista at the beginning of every
2011 Mar 09
4
Couple wine development questions
I'm not a developer but there are a few aspects of wine that I'm interested in. I've searched around, but can't really find answers to my questions. First of all, it appears that wine-dev's only use mailing lists as their primary means of communications. This forum is labeled "Wine Users", so probably the wrong place to ask, but there's no "Wine