HomeSort by relevance Sort by last modified time
    Searched refs:MULTIBOOT_SEARCH (Results 1 - 2 of 2) sorted by null

  /external/grub/stage2/
mb_header.h 55 * within the first MULTIBOOT_SEARCH bytes of the kernel image.
57 #define MULTIBOOT_SEARCH 8192
boot.c 56 /* presuming that MULTIBOOT_SEARCH is large enough to encompass an
58 unsigned char buffer[MULTIBOOT_SEARCH];
67 if (!(len = grub_read (buffer, MULTIBOOT_SEARCH)) || len < 32)
377 MULTIBOOT_SEARCH, so the data may have been read partially. */
378 if (data_len + SECTOR_SIZE <= MULTIBOOT_SEARCH)
383 grub_memmove (linux_data_tmp_addr, buffer, MULTIBOOT_SEARCH);
384 grub_read (linux_data_tmp_addr + MULTIBOOT_SEARCH,
385 data_len + SECTOR_SIZE - MULTIBOOT_SEARCH);

Completed in 233 milliseconds