12 Aug, 2007

1 commit


13 Jul, 2007

1 commit


24 May, 2007

1 commit


19 May, 2007

1 commit

  • A number of items in the i386 boot documentation have been either
    vague, outdated or hard to read. This text revision adds several more
    examples, including a memory map for a modern kernel load. It also
    adds a field-by-field detailed description of the setup header, and a
    bootloader ID for Qemu.

    Signed-off-by: H. Peter Anvin
    Signed-off-by: Linus Torvalds

    H. Peter Anvin
     

09 May, 2007

1 commit

  • In the process of rewriting the x86 setup code, I found a number of
    inaccuracies and outdated recommendations in the boot protocol
    documentation. Revamp to make it more up to date.

    In particular, the common use of the heap actually requires (slightly)
    more than 4K of heap plus stack, which is the recommended amount in
    the document; currently the code compensates by being smaller than
    specified, but we can't assume that will be true forever. Thus,
    recommend that if we have a modern bzImage kernel, that the bootloader
    maximizes the available space.

    Signed-off-by: H. Peter Anvin
    Signed-off-by: Linus Torvalds

    H. Peter Anvin
     

03 May, 2007

1 commit

  • Because the command line is increased to 2048 characters after 2.6.21, it's
    not possible for boot loaders and userspace tools to determine the length
    of the command line the kernel can understand. The benefit of knowing the
    length is that users can be warned if the command line size is too long
    which prevents surprise if things don't work after bootup.

    This patch updates the boot protocol to contain a field called
    "cmdline_size" that contain the length of the command line (excluding the
    terminating zero).

    The patch also adds missing fields (of protocol version 2.05) to the x86_64
    setup code.

    Signed-off-by: Bernhard Walle
    Signed-off-by: Andi Kleen
    Cc: Alon Bar-Lev
    Acked-by: H. Peter Anvin
    Cc: Andi Kleen
    Signed-off-by: Andrew Morton

    Bernhard Walle
     

27 Jan, 2007

1 commit


07 Dec, 2006

2 commits


13 Sep, 2006

1 commit

  • Claim an ID number for Xen in the LOADER_TYPE field.

    Also, keep the table in zero-page.txt consistent with boot.txt.

    [hpa says: 6 was skipped because I couldn't rule out that it hadn't been
    unofficially used. It seemed easier to skip it for now.]

    Signed-off-by: Jeremy Fitzhardinge
    Acked-by: "H. Peter Anvin"
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Jeremy Fitzhardinge
     

08 Sep, 2005

1 commit


01 May, 2005

1 commit

  • The specifications that talk about E820 map doesn't have an upper limit on
    the number of e820 entries. But, today's kernel has a hard limit of 32.
    With increase in memory size, we are seeing the number of E820 entries
    reaching close to 32. Patch below bumps the number upto 128.

    The patch changes the location of EDDBUF in zero-page (as it comes after E820).
    As, EDDBUF is not used by boot loaders, this patch should not have any effect
    on bootloader-setup code interface.

    Patch covers both i386 and x86-64.

    Tested on:
    * grub booting bzImage
    * lilo booting bzImage with EDID info enabled
    * pxeboot of bzImage

    Side-effect:
    bss increases by ~ 2K and init.data increases by ~7.5K
    on all systems, due to increase in size of static arrays.

    Signed-off-by: Venkatesh Pallipadi
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Venkatesh Pallipadi
     

17 Apr, 2005

1 commit

  • Initial git repository build. I'm not bothering with the full history,
    even though we have it. We can create a separate "historical" git
    archive of that later if we want to, and in the meantime it's about
    3.2GB when imported into git - space that would just make the early
    git days unnecessarily complicated, when we don't have a lot of good
    infrastructure for it.

    Let it rip!

    Linus Torvalds