Blame view

conf/layer.conf 1.65 KB
6375fa236   Eric Lee   Yocto meta layers...
1
2
3
4
5
6
  # We have a conf and classes directory, add to BBPATH
  BBPATH .= ":${LAYERDIR}"
  
  # We have a packages directory, add to BBFILES
  BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
              ${LAYERDIR}/recipes-*/*/*.bbappend"
9dc59c323   Eric Lee   Minor bugs fixed ...
7
8
9
10
  BBFILE_COLLECTIONS += "smarcimx8mm"
  BBFILE_PATTERN_smarcimx8mm := "^${LAYERDIR}"
  BBFILE_PRIORITY_smarcimx8mm = "12"
  LAYERSERIES_COMPAT_smarcimx8mm = "warrior zeus"
6375fa236   Eric Lee   Yocto meta layers...
11

6ab284bf2   Eric Lee   Yocto Zeus Suppor...
12
13
14
15
16
17
18
19
20
21
22
23
  # Define new EULAs and add them to the list defined in meta-freescale.
  # See fsl-eula-unpack.bbclass.
  FSL_EULA_FILE_MD5SUM_LA_OPT_NXP_SOFTWARE_LICENSE_V10 = "fd4b227530cd88a82af6a5982cfb724d"
  FSL_EULA_FILE_MD5SUM_LA_OPT_NXP_SOFTWARE_LICENSE_V11 = "228c72f2a91452b8a03c4cab30f30ef9"
  FSL_EULA_FILE_MD5SUMS_append = " \
      ${FSL_EULA_FILE_MD5SUM_LA_OPT_NXP_SOFTWARE_LICENSE_V10} \
      ${FSL_EULA_FILE_MD5SUM_LA_OPT_NXP_SOFTWARE_LICENSE_V11} \
  "
  
  # Override the EULA defined in meta-freescale.
  FSL_EULA_FILE = "${LAYERDIR}/../EULA.txt"
  FSL_EULA_FILE_MD5SUM = "${FSL_EULA_FILE_MD5SUM_LA_OPT_NXP_SOFTWARE_LICENSE_V11}"
6375fa236   Eric Lee   Yocto meta layers...
24

6ab284bf2   Eric Lee   Yocto Zeus Suppor...
25
26
27
28
  HOSTTOOLS_NONFATAL_append = " bc rsync xxd"
  
  # optee is no longer a valid distro feature. Use machine feature to remove, like this:
  # MACHINE_FEATURES_remove = "optee"
6375fa236   Eric Lee   Yocto meta layers...
29
30
  # DEPRECATED: The ability to remove optee from the build is deprecated and
  # will be removed in some future release.
6375fa236   Eric Lee   Yocto meta layers...
31

6375fa236   Eric Lee   Yocto meta layers...
32
33
34
35
36
37
38
39
40
  EMB_UBOOT_MIRROR ?= "git://git@git.embedian.com/developer/smarc-t335x-uboot.git"
  EMB_KERNEL_MIRROR ?= "git://git@git.embedian.com/developer/smarc-fsl-linux-kernel.git"
  
  MIRRORS += " \
  ${EMB_UBOOT_MIRROR}   git://github.com/embedian/smarc-uboot.git;protocol=git;branch=${SRCBRANCH} 
   \
  ${EMB_KERNEL_MIRROR}   git://github.com/embedian/smarc-fsl-linux-kernel.git;protocol=git;branch=${SRCBRANCH} 
   \
  "
6ab284bf2   Eric Lee   Yocto Zeus Suppor...
41