Lines Matching refs:of
28 BOOTSEG = 0x07C0 /* original address of boot-sector */
192 .long ZO__data # Size of initialized data
217 # Kernel attributes; used by setup. This is part 1 of the
245 # Part 2 of the header, from the old setup.S
255 # above section of header is compatible
279 ramdisk_image: .long 0 # address of loaded ramdisk image
292 # end of setup code can be used by setup
304 # located between the start of
305 # setup and the end of low
318 # the contents of an initrd
379 cmdline_size: .long COMMAND_LINE_SIZE-1 #length of the command line,
392 # single linked list of
399 # behaviours need to be analyzed. Here let's take the decompression of
402 # The file layout of gzip compressed kernel is:
413 # ... resulting in +18 bytes overhead of uncompressed data.
436 # The buffer for decompression in place is the length of the uncompressed
438 # compressed data is placed at the end of the buffer. The output pointer
439 # is placed at the start of the buffer and the input pointer is placed
448 # The worst case at the block level is a growth of the compressed data
449 # of 5 bytes per 32767 bytes.
453 # 32764 bytes and then all of the rest of the bytes representing the very
456 # All of which is enough to compute an amount of extra data that is required
458 # per 32767 bytes of data is sufficient. To avoid problems internal to a
468 # Adding 32768 instead of 32767 just makes for round numbers.
472 # xz stores data in chunks and has maximum chunk of 64K. Hence safety
474 # need to deal with each of them separately. Please check
480 # or one byte per 256 bytes. OTOH, we can safely get rid of the +128 as
486 # byte fixed overhead but has a maximum block size of 128K, so it needs a
501 * the head code is running to move ZO to the end of the buffer, it will
539 # End of setup header #####################################################
548 # Apparently some ancient versions of LILO invoked the kernel with %ss != %ds,
567 2: # Now %dx should point to the end of our stack space
572 movzwl %dx, %esp # Clear upper half of %esp
582 # Check signature at end of setup