Commit c865c0fd6eaaa512a4215f2ed78db45d1bf1bfc5

Authored by Eric Lee
1 parent 0855a365de
Exists in master

Add a mirror repo for Embedian's u-boot and Linux kernel

Showing 3 changed files with 12 additions and 4 deletions Inline Diff

1 # We have a conf and classes directory, add to BBPATH 1 # We have a conf and classes directory, add to BBPATH
2 BBPATH .= ":${LAYERDIR}" 2 BBPATH .= ":${LAYERDIR}"
3 3
4 # We have a packages directory, add to BBFILES 4 # We have a packages directory, add to BBFILES
5 BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ 5 BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
6 ${LAYERDIR}/recipes-*/*/*.bbappend" 6 ${LAYERDIR}/recipes-*/*/*.bbappend"
7 7
8 BBFILE_COLLECTIONS += "meta-emb-smarc" 8 BBFILE_COLLECTIONS += "meta-emb-smarc"
9 BBFILE_PATTERN_meta-emb-smarc := "^${LAYERDIR}" 9 BBFILE_PATTERN_meta-emb-smarc := "^${LAYERDIR}"
10 BBFILE_PRIORITY_meta-emb-smarc = "16" 10 BBFILE_PRIORITY_meta-emb-smarc = "16"
11 11
12 EMB_UBOOT_MIRROR ?= "git://git@git.embedian.com/developer/smarc-t335x-uboot.git"
13 EMB_KERNEL_MIRROR ?= "git://git@git.embedian.com/developer/smarc-fsl-linux-kernel.git"
14
15 MIRRORS += " \
16 ${EMB_UBOOT_MIRROR} git://github.com/embedian/smarc-uboot.git;protocol=git;branch=${SRCBRANCH} \n \
17 ${EMB_KERNEL_MIRROR} git://github.com/embedian/smarc-fsl-linux-kernel.git;protocol=git;branch=${SRCBRANCH} \n \
18 "
19
12 LAYERDEPENDS_meta-emb-smarc = "core fsl-arm" 20 LAYERDEPENDS_meta-emb-smarc = "core fsl-arm"
13 21
recipes-bsp/u-boot/u-boot-smarcfimx6_2014.04-smarcfimx6.bb
1 # Copyright (C) 2013, 2014 Freescale Semiconductor 1 # Copyright (C) 2013, 2014 Freescale Semiconductor
2 2
3 DESCRIPTION = "U-Boot i.MX6 SMARC-FiMX6 platforms" 3 DESCRIPTION = "U-Boot i.MX6 SMARC-FiMX6 platforms"
4 require recipes-bsp/u-boot/u-boot.inc 4 require recipes-bsp/u-boot/u-boot.inc
5 5
6 PROVIDES += "u-boot" 6 PROVIDES += "u-boot"
7 7
8 LICENSE = "GPLv2+" 8 LICENSE = "GPLv2+"
9 LIC_FILES_CHKSUM = "file://Licenses/README;md5=025bf9f768cbcb1a165dbe1a110babfb" 9 LIC_FILES_CHKSUM = "file://Licenses/README;md5=025bf9f768cbcb1a165dbe1a110babfb"
10 10
11 PROVIDES += "u-boot" 11 PROVIDES += "u-boot"
12 PV = "2014.04-smarcfimx6" 12 PV = "2014.04-smarcfimx6"
13 13
14 SRCREV = "3b1e04a5dbb7ce5ac2b69bdac905b72e2ac56308" 14 SRCREV = "875064eca4f80aa5179f1dc434fe3495a358d41b"
15 SRCBRANCH = "smarc-imx_v2014.04_3.14.28_1.0.0_ga" 15 SRCBRANCH = "smarc-imx_v2014.04_3.14.28_1.0.0_ga"
16 # eMMC Boot Up 16 # eMMC Boot Up
17 #SRCREV = "1fde73522a9617f04c5eb16b508dd70f193139bb" 17 #SRCREV = "7524aaeff2fef8a41ee3d4c91fde72b013d8bab5"
18 #SRCBRANCH = "smarc-emmc-imx_v2014.04_3.14.28_1.0.0_ga" 18 #SRCBRANCH = "smarc-emmc-imx_v2014.04_3.14.28_1.0.0_ga"
19 SRC_URI = "git://git@git.embedian.com/developer/smarc-t335x-uboot.git;protocol=ssh;branch=${SRCBRANCH}" 19 SRC_URI = "${EMB_UBOOT_MIRROR};protocol=ssh;branch=${SRCBRANCH}"
20 20
21 PR = "r0+gitr${SRCPV}" 21 PR = "r0+gitr${SRCPV}"
22 22
23 S = "${WORKDIR}/git" 23 S = "${WORKDIR}/git"
24 24
25 PACKAGE_ARCH = "${MACHINE_ARCH}" 25 PACKAGE_ARCH = "${MACHINE_ARCH}"
26 COMPATIBLE_MACHINE = "(mx6)" 26 COMPATIBLE_MACHINE = "(mx6)"
27 27
28 28
recipes-kernel/linux/linux-smarcfimx6_3.14.28.bb
1 # Copyright (C) 2013, 2014 Freescale Semiconductor 1 # Copyright (C) 2013, 2014 Freescale Semiconductor
2 # Released under the MIT license (see COPYING.MIT for the terms) 2 # Released under the MIT license (see COPYING.MIT for the terms)
3 3
4 SUMMARY = "Linux Kernel for SMARC-FiMX6 and supported by Embedian" 4 SUMMARY = "Linux Kernel for SMARC-FiMX6 and supported by Embedian"
5 DESCRIPTION = "Linux Kernel provided and supported by Embedian with focus on \ 5 DESCRIPTION = "Linux Kernel provided and supported by Embedian with focus on \
6 SMARC-FiMX6 Family Computer on Modules. It includes support for many IPs such as GPU, VPU and IPU." 6 SMARC-FiMX6 Family Computer on Modules. It includes support for many IPs such as GPU, VPU and IPU."
7 7
8 inherit kernel 8 inherit kernel
9 require recipes-kernel/linux/linux-imx.inc 9 require recipes-kernel/linux/linux-imx.inc
10 require recipes-kernel/linux/linux-dtb.inc 10 require recipes-kernel/linux/linux-dtb.inc
11 11
12 DEPENDS += "lzop-native bc-native" 12 DEPENDS += "lzop-native bc-native"
13 13
14 SRCBRANCH = "smarc-imx_3.14.28_1.0.0_ga" 14 SRCBRANCH = "smarc-imx_3.14.28_1.0.0_ga"
15 15
16 SRC_URI = "git://git@git.embedian.com/developer/smarc-fsl-linux-kernel.git;protocol=ssh;branch=${SRCBRANCH} \ 16 SRC_URI = "${EMB_KERNEL_MIRROR};protocol=ssh;branch=${SRCBRANCH} \
17 file://defconfig \ 17 file://defconfig \
18 " 18 "
19 19
20 SRCREV = "570a602b4796b94f7329c118c0ca4946ec4c3e6f" 20 SRCREV = "570a602b4796b94f7329c118c0ca4946ec4c3e6f"
21 PV = "3.14.28" 21 PV = "3.14.28"
22 LOCALVERSION = "-1.0.1_smarc" 22 LOCALVERSION = "-1.0.1_smarc"
23 23
24 COMPATIBLE_MACHINE = "(imx6q1gsmarc|imx6q2gsmarc|imx6u1gsmarc|imx6solosmarc)" 24 COMPATIBLE_MACHINE = "(imx6q1gsmarc|imx6q2gsmarc|imx6u1gsmarc|imx6solosmarc)"
25 25