Displaying 12 results from an estimated 12 matches for "kernelnam".
Did you mean:
kernelname
2002 Jul 11
1
help with porting patch from 1.62 to 1.75
...ted.
regards
Mathias
# cat swapdiffs
diff -u -r syslinux-1.62/ldlinux.asm syslinux-1.62-w1/ldlinux.asm
--- syslinux-1.62/ldlinux.asm Wed Apr 25 02:36:14 2001
+++ syslinux-1.62-w1/ldlinux.asm Mon Jun 4 12:49:57 2001
@@ -1644,7 +1644,8 @@
;
; Find the kernel on disk
;
-get_kernel: mov byte [KernelName+11],0 ; Zero-terminate
filename/extension
+get_kernel: call check_for_swap
+ mov byte [KernelName+11],0 ; Zero-terminate filename/extension
mov eax,[KernelName+8] ; Save initial extension
mov [OrigKernelExt],eax
.search_loop: push bx
@@ -2432,6 +2433,7 @@
;
; Okay, here we go... copy o...
2003 Dec 16
2
syslinux bootsector info?
...ither freedos bootsector directly, or SYSlinux's bootsector.
http://www.coli.uni-sb.de/~eric/stuff/soft/specials/metakern-11oct2003.zip
SYSLINUX A:
copybs A: A:\syslinux.bin
copy /b A:\meta-all.bin + A:\metaboot.bot + A:\syslinux.bin A:\metakern.sys
SYS A: A: BOOTONLY /K METAKERN.SYS /L 0x60
(kernelname, loadaddress, and bootonly-parameter causes only bootsector to be written, not any DOS system files copied)
this presents a bootmenu:
1) FreeDOS
2) Unknown operating system (this is the Syslinux bootsector).
sorry for the many mailings. I should stick to freedos mailinglists but am currently exp...
2003 Feb 06
2
Can't boot NT floppy
Hi,
Thanks a lot for your exceptional work.... I guess many people dealing with
bootable CD's just could'nt do anything without isolinux...
However I've got a small problem.
In fact the problem is maybe due to my BIOS (Phoenix on an HP Vectra VL800),
and maybe due to isolinux / memdisk, I don't know.
Generally speaking, take any floppy, format it under Win2K, copy from your
hard
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...g.c
index 4f7a4d2..70fe346 100644
--- a/com32/elflink/ldlinux/readconfig.c
+++ b/com32/elflink/ldlinux/readconfig.c
@@ -1121,7 +1121,8 @@ do_include:
* display/font/kbdmap are rather similar, open a file then do sth
*/
else if (looking_at(p, "display")) {
- char *filename, *dst = KernelName;
+ const char *filename;
+ char *dst = KernelName;
size_t len = FILENAME_MAX - 1;
filename = refstrdup(skipspace(p + 7));
@@ -1133,7 +1134,8 @@ do_include:
get_msg_file(KernelName);
refstr_put(filename);
} else if (looking_at(p, "font")) {
- char *filename, *dst = Kern...
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi,
These patches contain support for some features that are already in
Syslinux 4 but weren't working properly on the elflink branch. It's
another step closer to feature parity with Syslinux 4.
Having to jump through the comboot API for localboot support is less
than ideal and I'll eventually fix that, probably when we move a big
chunk of code from asm to C.
Also, there's a
2004 Feb 06
2
IPFIREWALL_DEFAULT_TO_ACCEPT becomes default to deny
Hey Guys,
today I upgraded to 4.8-RELEASE-p15. As usual I set IPFIREWALL to default
accept in my kernel config file.
Config & make weren't complaining so, installed the kernel, reboot and there
it was:
>IP packet filtering initialized, divert disabled, rule-based forwarding
enabled, default to deny, logging disabled
Another rebuild didn't work out so... I reviewed
2010 Feb 19
1
XCP PV boot process
hi all,
where can i read more about boot process?
i try to run freebsd 8 with compiled dumU kernel, but when i clear HVM-*
params and putting
PV-kernel entry i have some err msg
i do folowing:
xe vm-param-clear uuid=e2b34b3e-945b-c909-4a91-4feba722bcd8 \
param-name=HVM-boot-params
xe vm-param-set uuid=e2b34b3e-945b-c909-4a91-4feba722bcd8 \
HVM-boot-policy= \
2009 Jun 30
2
syslinux 3.11 patch for handling both KVM and serial console input
...700
+++ s_yslinux-3.11.new/ui.inc 2009-03-20 15:12:45.000000000 -0700
@@ -196,6 +196,13 @@
; First we need to mangle the kernel name the way DOS would...
;
mov si,command_line
+ call find
+ mov si,FromFlag
+ call find
+ mov si,command_line
+ jmp bad_kernel
+
+find:
mov di,KernelName
push si
push di
@@ -346,6 +353,8 @@
add bx,byte 4
cmp bx,exten_table_end
jna .search_loop ; allow == case (final case)
+ ret
+
; Fall into bad_kernel
;
; bad_kernel: Kernel image not found
This message and any attachments are intended only for th...
2010 Jul 15
1
Accessing command_line from core C code
...; display_labels.c
+ extern pm_display_labels
+
%if IS_PXELINUX
; pxe.c
extern unload_pxe, reset_pxe
diff --git a/core/include/core.h b/core/include/core.h
index 7db5daf..8d77b52 100644
--- a/core/include/core.h
+++ b/core/include/core.h
@@ -14,6 +14,9 @@ extern char ConfigName[];
extern char KernelName[];
extern char cmd_line[];
extern char ConfigFile[];
+extern uint32_t HighMemSize;
+extern uint32_t VKernelEnd;
+extern char command_line[];
/* diskstart.inc isolinux.asm*/
extern void getlinsec(void);
@@ -29,6 +32,10 @@ extern int (*idle_hook_func)(void);
extern void __idle(void);
extern...
2010 Sep 10
8
[PATCH] disable kernel build in Xen build system
...ntation.
+ the xen binary (xen.gz), the tools and the documentation.
You can override the destination for make install by setting DESTDIR
to some value.
- The make command line defaults to building the kernel vmlinuz-2.6.x-xen.
- You can override this default by specifying KERNELS=kernelname. For
- example, you can make two kernels - linux-2.6-xen0
- and linux-2.6-xenU - which are smaller builds containing only selected
- modules, intended primarily for developers that don''t like to wait
- for a full -xen kernel to build. The -xenU kernel is particularly small,
- as...
2009 Mar 17
2
Crazy "interrupt storm detected" on atapic0
Hi all,
I have had this problem since day 1 on my new server.
It has run since November 15th 2008, and serve approx. 10 GB worth of web
traffic per month for the main site and then some 40 domains with mail and
small web pages. (hence - it's NOT that busy yet)
I started with 7.1-RELEASE-pX since I didn't have problems straight off -
but it didn't last long.
After a few days of
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com>
The following patch series is available at,
git://git.zytor.com/users/mfleming/syslinux.git elflink
All patches are against the 'elflink' branch.
This series fixes a few serious bugs and some behavioural
incompatibilities with the 4.x series.
Matt Fleming (19):
ldlinux: Initialise 'p' before using it.
ldlinux: Parse