summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel-headers-cross/builder.sh
blob: 277246a27d0cfc6e13184482dd68f8eff24cd643 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
source $stdenv/setup


buildPhase() {
    make include/linux/version.h
}

buildPhase=buildPhase


installPhase() {
    mkdir $out
    mkdir $out/include
    #cd $out/include
    #ln -s asm-arm asm
    if test $cross = "arm-linux"; then
       arch=arm
    elif test $cross = "mips-linux"; then
           arch=mips
    elif test $cross = "sparc-linux"; then
           arch=sparc
    elif test $cross = "powerpc-linux"; then
           arch=ppc
    elif test $cross = "ppc-linux"; then
           arch=ppc
    fi
    make include/asm ARCH=$arch
    cp -prvd include/linux include/asm include/asm-$arch include/asm-generic $out/include
    echo -n > $out/include/linux/autoconf.h
}

installPhase=installPhase


genericBuild