Changes between Version 3 and Version 4 of Orbit/Building/Notes/PXE


Ignore:
Timestamp:
Feb 18, 2014, 10:23:05 PM (10 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Orbit/Building/Notes/PXE

    v3 v4  
    22
    33= Comments on the PXE Makefile =
     4
     5== Current Status 2/18/2014 ==
     6
     7The current build package for making pxe images lives on:
     8{{{
     9console.sb5.orbit-lab.org:/root/pxe/omf/pxe/
     10}}}
     11
     12In there is a make master make file with all the parameters to build the kernel / initramfs image pair. It will also build a pxelinux.bin from sources. This version of pxelinux.bin doesn't need to match with kernel / initramfs pair.
     13
     14in the Makefiel the values of the following variables control what kernel directory the make process will consult to build a kernel:
     15{{{
     16KERNEL_VERSION = 3
     17KERNEL_PATCHLEVEL = 0
     18KERNEL_SUBLEVEL = 4
     19}}}
     20
     21In the /root/pxe/omf/pxe/src directory should be a directory named linux-VERSIONNUMBERS. In this directory is the config file for the kernel being built.
     22
     23Additionally ins the same source dir is a busbox-VERSION directory with a .config file that controls what features are built into busybox.
     24
     25
    426
    527== Makefile ==