Commit 19644783ef0bbdbff62052f93f066398a14f721a

Authored by Eric Lee
1 parent 5bf7642f5b
Exists in master

Add a backup repo for u-boot and kernel at github

Showing 3 changed files with 10 additions and 2 deletions Side-by-side Diff

... ... @@ -7,4 +7,12 @@
7 7 BBFILE_COLLECTIONS += "meta-embedian"
8 8 BBFILE_PATTERN_meta-embedian := "^${LAYERDIR}/"
9 9 BBFILE_PRIORITY_meta-embedian = "15"
  10 +
  11 +EMB_UBOOT_MIRROR ?= "git://git@git.embedian.com/developer/smarc-t335x-uboot.git"
  12 +EMB_KERNEL_MIRROR ?= "git://git@git.embedian.com/developer/smarc-ti-linux-kernel.git"
  13 +
  14 +MIRRORS += " \
  15 +${EMB_UBOOT_MIRROR} git://github.com/embedian/smarc-uboot.git;protocol=git;branch=${SRCBRANCH} \n \
  16 +${EMB_KERNEL_MIRROR} git://github.com/embedian/smarc-ti-linux-kernel.git;protocol=git;branch=${SRCBRANCH} \n \
  17 +"
recipes-bsp/u-boot/u-boot_2014.04-smarct335x.bb
... ... @@ -18,7 +18,7 @@
18 18  
19 19 # For u-boot v2014.04
20 20 SRCREV = "c2477548450f9aacc5d6b9732098525bc9e4d4e0"
21   -SRC_URI = "git://git@git.embedian.com/developer/smarc-t335x-uboot.git;protocol=ssh;branch=${BRANCH}"
  21 +SRC_URI = "${EMB_UBOOT_MIRROR};protocol=ssh;branch=${BRANCH}"
22 22  
23 23 BRANCH = "v2014.04-smarct33"
24 24  
recipes-kernel/linux/linux-smarct335x-staging_3.12.bb
... ... @@ -45,7 +45,7 @@
45 45 MACHINE_KERNEL_PR_append = "k+gitr${SRCPV}"
46 46 PR = "${MACHINE_KERNEL_PR}"
47 47  
48   -SRC_URI = "git://git@git.embedian.com/developer/smarc-ti-linux-kernel.git;protocol=ssh;branch=${BRANCH} \
  48 +SRC_URI = "${EMB_KERNEL_MIRROR};protocol=ssh;branch=${BRANCH} \
49 49 file://defconfig \
50 50 "
51 51