Blame view

recipes-kernel/linux/linux-smarcimx8m_4.9.88.bb 1.71 KB
8da26e498   Eric Lee   Yocto rocko meta ...
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
  # Copyright (C) 2013-2016 Freescale Semiconductor
  # Copyright 2017 NXP
  # Copyright 2018 Embedian, Inc..
  # Released under the MIT license (see COPYING.MIT for the terms)
  
  SUMMARY = "Linux Kernel provided and supported by NXP"
  DESCRIPTION = "Linux Kernel provided and supported by NXP with focus on \
  i.MX Family Reference Boards. It includes support for many IPs such as GPU, VPU and IPU."
  
  require recipes-kernel/linux/linux-imx.inc
  require recipes-kernel/linux/linux-imx-src.inc
  
  DEPENDS += "lzop-native bc-native"
  
  DEFAULT_PREFERENCE = "1"
  
  DO_CONFIG_V7_COPY = "no"
  DO_CONFIG_V7_COPY_mx6 = "yes"
  DO_CONFIG_V7_COPY_mx7 = "yes"
  DO_CONFIG_V7_COPY_mx8 = "no"
  
  SRCBRANCH = "smarc-imx_4.9.88_2.0.0_ga"
  
  LOCALVERSION = "-${SRCBRANCH}"
  DEFCONFIG_mx8 = "smarcimx8m_defconfig"
  
  KERNEL_SRC ?= "git@git.embedian.com:developer/smarc-fsl-linux-kernel.git;protocol=git"
  SRC_URI = "${EMB_KERNEL_MIRROR};protocol=ssh;branch=${SRCBRANCH}"
  SRCREV = "a0f48761d7bb4f790f996f0765cced72c1ff3ee2"
  
  S = "${WORKDIR}/git"
  
  addtask copy_defconfig after do_unpack before do_preconfigure
  do_copy_defconfig () {
      install -d ${B}
      if [ ${DO_CONFIG_V7_COPY} = "yes" ]; then
          # copy latest imx_v7_defconfig to use for mx6, mx6ul and mx7
          mkdir -p ${B}
          cp ${S}/arch/arm/configs/imx_v7_defconfig ${B}/.config
          cp ${S}/arch/arm/configs/imx_v7_defconfig ${B}/../defconfig
      else
          # copy latest defconfig to use for mx8
          mkdir -p ${B}
          cp ${S}/arch/arm64/configs/${DEFCONFIG_mx8} ${B}/.config
          cp ${S}/arch/arm64/configs/${DEFCONFIG_mx8} ${B}/../defconfig
      fi
  }
  
  COMPATIBLE_MACHINE = "(mx6|mx7|mx8)"
  EXTRA_OEMAKE_append_mx6 = " ARCH=arm"
  EXTRA_OEMAKE_append_mx7 = " ARCH=arm"
  EXTRA_OEMAKE_append_mx8 = " ARCH=arm64"