summaryrefslogtreecommitdiffstats
path: root/examples/recipes/linux/build.yml
blob: 3f84291df2762e7dac6d948851a64befb5aef187 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
meta:
  version: '6.5.5'
tasks:
  unpack:
    fetch:
      - name: '{{name}}-{{version}}.tar.xz'
        sha256: '8cf10379f7df8ea731e09bff3d0827414e4b643dd41dc99d0af339669646ef95'
    run: |
      tar xf {{dldir}}/{{name}}-{{version}}.tar.xz

  configure:
    args:
      host: 'platform'
    parent:
      task: 'unpack'
    build_depends:
      - recipe: 'gcc'
        task: 'install'
    run: |
      mkdir {{name}}-build
      cd {{name}}-build
      make \
        -f ../{{name}}-{{version}}/Makefile \
        ARCH={{host.karch}} \
        CROSS_COMPILE={{cross_compile}} \
        defconfig

  compile:
    args:
      host: 'platform'
    parent:
      task: 'configure'
    run: |
      export KBUILD_BUILD_TIMESTAMP="@${SOURCE_DATE_EPOCH}"

      cd {{name}}-build
      make \
        ARCH={{host.karch}} \
        CROSS_COMPILE={{cross_compile}} \
        all

  install:
    args:
      host: 'platform'
    parent:
      task: 'compile'
    output:
      boot:
        path: 'boot'
      modules:
        path: 'modules'
    run: |
      cd {{name}}-build
      mkdir -p {{destdir}}/boot
      make \
        ARCH={{host.karch}} \
        CROSS_COMPILE={{cross_compile}} \
        INSTALL_PATH={{destdir}}/boot \
        INSTALL_MOD_PATH={{destdir}}/modules{{host.prefix}} \
        DEPMOD=true \
        install modules_install