Commit 763360c58c811679353dd3318ca97cf8034313f1

Authored by Eric Lee
1 parent c0273a319d
Exists in master

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

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

... ... @@ -7,4 +7,12 @@
7 7 BBFILE_COLLECTIONS += "embedian"
8 8 BBFILE_PATTERN_embedian := "^${LAYERDIR}/"
9 9 BBFILE_PRIORITY_embedian = "20"
  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/linux-smarc-t335x-v3.2.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_3.2.bb
... ... @@ -18,7 +18,7 @@
18 18 # For rev.00B0 or After
19 19 SRCREV = "def7279fa51043802cb94e8eb9ccf91a87ef25a9"
20 20  
21   -SRC_URI = "git://git@git.embedian.com/developer/linux-smarc-t335x-v3.2.git;protocol=ssh;branch=${BRANCH} \
  21 +SRC_URI = "${EMB_KERNEL_MIRROR};protocol=ssh;branch=${BRANCH} \
22 22 file://defconfig \
23 23 "
24 24