Home
last modified time | relevance | path

Searched refs:setup_sects (Results 1 – 5 of 5) sorted by relevance

/linux-4.1.27/arch/x86/kernel/
Dkexec-bzimage64.c336 int setup_sects, kern16_size, ret = 0; in bzImage64_load() local
350 setup_sects = header->setup_sects; in bzImage64_load()
351 if (setup_sects == 0) in bzImage64_load()
352 setup_sects = 4; in bzImage64_load()
354 kern16_size = (setup_sects + 1) * 512; in bzImage64_load()
/linux-4.1.27/arch/x86/include/uapi/asm/
Dbootparam.h49 __u8 setup_sects; member
/linux-4.1.27/Documentation/x86/
Dboot.txt161 01F1/1 ALL(1 setup_sects The size of the setup in sectors
201 (1) For backwards compatibility, if the setup_sects field contains 0, the
238 Field name: setup_sects
342 should be less than (0x200*setup_sects).
346 This is a valid value if and only if the "setup_sects" field
842 if ( setup_sects == 0 ) {
843 setup_sects = 4;
885 memcpy(0x90000, base_ptr, (setup_sects+1)*512);
892 memset(0x90000 + (setup_sects+1)*512, 0,
893 (64-(setup_sects+1))*512);
[all …]
/linux-4.1.27/arch/x86/boot/
Dheader.S282 setup_sects: .byte 0 /* Filled in by build.c */ label
/linux-4.1.27/tools/lguest/
Dlguest.c502 lseek(fd, (boot.hdr.setup_sects+1) * 512, SEEK_SET); in load_bzimage()