buildroot_documentation

Documentation for building AltimatOS's build roots

View on GitHub
Navigation    
Previous HOME Next

Linux Headers - C headers describing built-in system calls

The Linux Headers package is a set of Kernel headers that are to be used to define low-level C system calls.

To build it, run the following command as the builder user:

pushd /source
    tar xvf linux-5.6.18.tar.xz
    pushd linux-5.6.18
        make mrproper
        make ARCH=x86_64 headers_check
        make ARCH=x86_64 INSTALL_HDR_PATH=/tools headers_install
    popd
popd

NOTE: We will not build the test suits of various packages during the cross-compile phase as they will not accurately run in many cases.

Navigation    
Previous HOME Next