summaryrefslogtreecommitdiffstats
path: root/examples/recipes/linux@5.10.66.yml
blob: 22b17c2073f4db8da37ed43f4754bbeb68ba6ecf (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
tasks:
  unpack:
    fetch:
      - name: '{{pn}}-{{pv}}.tar.xz'
        sha256: '5dfa06bbbbd164b9ea669ec637b1e6d05fb5fea8ef3aeb6729f2cbcd0dfcc8a7'
    run: |
      tar xf {{dldir}}/{{pn}}-{{pv}}.tar.xz

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

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

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

  install:
    args:
      host: 'platform'
    inherit:
      task: 'compile'
    output:
      boot:
        path: 'boot'
      modules:
        path: 'modules'
    run: |
      cd {{pn}}-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