search for: bootflag

Displaying 10 results from an estimated 10 matches for "bootflag".

2017 Mar 05
0
[PATCH] Fix recognition of keeppxe option
...> */ > static const char *find_argument(const char *cmdline, const char *argument) > { > @@ -166,6 +169,7 @@ int bios_boot_linux(void *kernel_buf, si > struct syslinux_memmap *amap = NULL; > uint32_t memlimit = 0; > uint16_t video_mode = 0; > + uint8_t bootflags = 0; > const char *arg; > > cmdline_size = strlen(cmdline) + 1; > @@ -200,6 +204,14 @@ int bios_boot_linux(void *kernel_buf, si > } > } > > + if (syslinux_filesystem() == SYSLINUX_FS_PXELINUX && > + find_argument(cmdline, "ke...
2016 Jun 10
4
[PATCH] Fix recognition of keeppxe option
...turned pointer is valid but meaningless. */ static const char *find_argument(const char *cmdline, const char *argument) { @@ -166,6 +169,7 @@ int bios_boot_linux(void *kernel_buf, si struct syslinux_memmap *amap = NULL; uint32_t memlimit = 0; uint16_t video_mode = 0; + uint8_t bootflags = 0; const char *arg; cmdline_size = strlen(cmdline) + 1; @@ -200,6 +204,14 @@ int bios_boot_linux(void *kernel_buf, si } } + if (syslinux_filesystem() == SYSLINUX_FS_PXELINUX && + find_argument(cmdline, "keeppxe")) { + extern __weak char KeepPXE; +...
2006 Oct 31
0
6295108 When installing to second disk, grub defaults to hd0 instead of hd1
...adding nexus driver does not attach nexus children 6331399 a minor improvement to boot-archive service 6332623 reboot -- -r loses grub default information Files: update: usr/src/cmd/boot/bootadm/bootadm.c update: usr/src/cmd/svc/milestone/boot-archive update: usr/src/psm/stand/boot/i386/common/bootflags.c update: usr/src/uts/common/os/devcfg.c
2011 Jul 11
0
[GIT PULL] HDT 0.5.1
Please consider pulling git://git.zytor.com/users/erwan/hdt.git My master is featuring : - strreplace in the com32 world - Building an iso hybrid version of HDT - Dumping bootflag for hdd partitions - Using dump_filename to choose the filename when HDT use the dump mode - Cleaning the checksums computation Thx !
2007 Apr 18
1
[PATCH 1/2] Clean up asm-x86_64/bugs.h
...================================================= --- a/arch/x86_64/kernel/Makefile +++ b/arch/x86_64/kernel/Makefile @@ -8,7 +8,8 @@ obj-y := process.o signal.o entry.o trap ptrace.o time.o ioport.o ldt.o setup.o i8259.o sys_x86_64.o \ x8664_ksyms.o i387.o syscall.o vsyscall.o \ setup64.o bootflag.o e820.o reboot.o quirks.o i8237.o \ - pci-dma.o pci-nommu.o alternative.o hpet.o tsc.o sched-clock.o + pci-dma.o pci-nommu.o alternative.o hpet.o tsc.o sched-clock.o \ + bugs.o obj-$(CONFIG_STACKTRACE) += stacktrace.o obj-$(CONFIG_X86_MCE) += mce.o therm_throt.o ===========================...
2007 Apr 18
1
[PATCH 1/2] Clean up asm-x86_64/bugs.h
...================================================= --- a/arch/x86_64/kernel/Makefile +++ b/arch/x86_64/kernel/Makefile @@ -8,7 +8,8 @@ obj-y := process.o signal.o entry.o trap ptrace.o time.o ioport.o ldt.o setup.o i8259.o sys_x86_64.o \ x8664_ksyms.o i387.o syscall.o vsyscall.o \ setup64.o bootflag.o e820.o reboot.o quirks.o i8237.o \ - pci-dma.o pci-nommu.o alternative.o hpet.o tsc.o sched-clock.o + pci-dma.o pci-nommu.o alternative.o hpet.o tsc.o sched-clock.o \ + bugs.o obj-$(CONFIG_STACKTRACE) += stacktrace.o obj-$(CONFIG_X86_MCE) += mce.o therm_throt.o ===========================...
2007 Jun 12
1
Compile error on Xen-305-rc1 on x86_64
...arch/x86_64/kernel/signal.o AS arch/x86_64/kernel/entry-xen.o CC arch/x86_64/kernel/traps-xen.o CC arch/x86_64/kernel/irq-xen.o CC arch/x86_64/kernel/ptrace.o CC arch/x86_64/kernel/../../i386/kernel/alternative.o CC arch/x86_64/kernel/../../i386/kernel/bootflag.o CC arch/x86_64/kernel/../../i386/kernel/cpu/intel_cacheinfo.o CC arch/x86_64/kernel/../../i386/kernel/pci-dma-xen.o CC arch/x86_64/kernel/../../i386/kernel/quirks-xen.o CC arch/x86_64/kernel/../../i386/kernel/time-xen.o CC arch/x86_64/kernel/../../i386/kernel/to...
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
33
[RFC PATCH 00/33] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths