diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2013-09-02 02:54:11 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-09-03 16:59:13 +0200 |
commit | b79176adb306d6802d1219dfadfa7ffe080efb22 (patch) | |
tree | 6e1f573f3b398646d48122c6766e1014c1b83018 /meta-initramfs | |
parent | 9e4b28aa92d69695bf49b5d588f08963eed1d35c (diff) | |
download | meta-openembedded-contrib-b79176adb306d6802d1219dfadfa7ffe080efb22.tar.gz |
remove the unnecessary protocol parameters
It's not necessary to specify the protocol parameter when it's the
default protocol for the fetcher, e.g. the default protocol for
git fetcher it git, "protocol=git" isn't needed.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-initramfs')
4 files changed, 4 insertions, 4 deletions
diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb index 5e331827f95..45741bf4602 100644 --- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb +++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-klibc_git.bb @@ -1,7 +1,7 @@ PV = "0.5.9" PR = "r10+gitr${SRCREV}" -SRC_URI = "git://github.com/kexecboot/kexecboot.git;protocol=git" +SRC_URI = "git://github.com/kexecboot/kexecboot.git" SRCREV = "b667914bb0cba1c30f9b771abccfe98f1419afeb" S = "${WORKDIR}/git" diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb b/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb index d664261cf33..c3c496da840 100644 --- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb +++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb @@ -1,7 +1,7 @@ PV = "0.5.9" PR = "r10+gitr${SRCREV}" -SRC_URI = "git://github.com/kexecboot/kexecboot.git;protocol=git" +SRC_URI = "git://github.com/kexecboot/kexecboot.git" SRCREV = "b667914bb0cba1c30f9b771abccfe98f1419afeb" S = "${WORKDIR}/git" diff --git a/meta-initramfs/recipes-devtools/klibc/klibc.inc b/meta-initramfs/recipes-devtools/klibc/klibc.inc index 5f05c9fcddb..d8af6663909 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc.inc +++ b/meta-initramfs/recipes-devtools/klibc/klibc.inc @@ -27,7 +27,7 @@ KLIBC_ARCH_powerpc64 = 'ppc64' export FIX_ARMV4_EABI_BX = "${FIX_V4BX}" SRCREV = "f05ff116bb9edbbb81d82fa47b78e630ce878470" -SRC_URI = "git://git.kernel.org/pub/scm/libs/klibc/klibc.git;protocol=git" +SRC_URI = "git://git.kernel.org/pub/scm/libs/klibc/klibc.git" SRC_URI_append_linux-gnueabi = " file://klibc-config-eabi.patch \ file://armv4-fix-v4bx.patch \ diff --git a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb index 3039eb74d7b..aed9b905f30 100644 --- a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb +++ b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_1.5.0.bb @@ -11,7 +11,7 @@ PR = "r0" inherit klibc -SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=ca39eb1d98e736109c64ff9c1aa2a6ecca222d8f \ +SRC_URI = "git://git.infradead.org/mtd-utils.git;tag=ca39eb1d98e736109c64ff9c1aa2a6ecca222d8f \ file://Makefile.patch \ file://common.mk.patch \ file://libubi.c.patch \ |