* [Buildroot] [PATCH V4 1/1] boot/uboot: Add custom Subversion repository support for the package [not found] <56f9c5e03b04a_e97196065823599@ultri2.mail> @ 2016-03-29 17:22 ` Pauli Sundberg 2016-03-29 17:22 ` [Buildroot] [PATCH V4 1/1] linux: " Pauli Sundberg 2016-04-05 20:29 ` [Buildroot] [PATCH V4 1/1] boot/uboot: " Peter Korsgaard 0 siblings, 2 replies; 4+ messages in thread From: Pauli Sundberg @ 2016-03-29 17:22 UTC (permalink / raw) To: buildroot Signed-off-by: Pauli Sundberg <susundberg@gmail.com> --- boot/uboot/Config.in | 9 ++++++--- boot/uboot/uboot.mk | 3 +++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in index a6b9f17..4613dd3 100644 --- a/boot/uboot/Config.in +++ b/boot/uboot/Config.in @@ -54,6 +54,9 @@ config BR2_TARGET_UBOOT_CUSTOM_GIT config BR2_TARGET_UBOOT_CUSTOM_HG bool "Custom Mercurial repository" +config BR2_TARGET_UBOOT_CUSTOM_SVN + bool "Custom Subversion repository" + endchoice config BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE @@ -64,7 +67,7 @@ config BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION string "URL of custom U-Boot tarball" depends on BR2_TARGET_UBOOT_CUSTOM_TARBALL -if BR2_TARGET_UBOOT_CUSTOM_GIT || BR2_TARGET_UBOOT_CUSTOM_HG +if BR2_TARGET_UBOOT_CUSTOM_GIT || BR2_TARGET_UBOOT_CUSTOM_HG || BR2_TARGET_UBOOT_CUSTOM_SVN config BR2_TARGET_UBOOT_CUSTOM_REPO_URL string "URL of custom repository" @@ -76,7 +79,7 @@ config BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION default BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION \ if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != "" # legacy help - Revision to use in the typical format used by Git/Mercurial + Revision to use in the typical format used by Git/Mercurial/Subversion E.G. a sha id, a tag, branch, .. endif @@ -88,7 +91,7 @@ config BR2_TARGET_UBOOT_VERSION if BR2_TARGET_UBOOT_CUSTOM_VERSION default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL default BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION \ - if BR2_TARGET_UBOOT_CUSTOM_GIT || BR2_TARGET_UBOOT_CUSTOM_HG + if BR2_TARGET_UBOOT_CUSTOM_GIT || BR2_TARGET_UBOOT_CUSTOM_HG || BR2_TARGET_UBOOT_CUSTOM_SVN config BR2_TARGET_UBOOT_PATCH string "Custom U-Boot patches" diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index 3c96259..48f40c3 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -24,6 +24,9 @@ UBOOT_SITE_METHOD = git else ifeq ($(BR2_TARGET_UBOOT_CUSTOM_HG),y) UBOOT_SITE = $(call qstrip,$(BR2_TARGET_UBOOT_CUSTOM_REPO_URL)) UBOOT_SITE_METHOD = hg +else ifeq ($(BR2_TARGET_UBOOT_CUSTOM_SVN),y) +UBOOT_SITE = $(call qstrip,$(BR2_TARGET_UBOOT_CUSTOM_REPO_URL)) +UBOOT_SITE_METHOD = svn else # Handle stable official U-Boot versions UBOOT_SITE = ftp://ftp.denx.de/pub/u-boot -- 1.9.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH V4 1/1] linux: Add custom Subversion repository support for the package 2016-03-29 17:22 ` [Buildroot] [PATCH V4 1/1] boot/uboot: Add custom Subversion repository support for the package Pauli Sundberg @ 2016-03-29 17:22 ` Pauli Sundberg 2016-04-05 20:29 ` Peter Korsgaard 2016-04-05 20:29 ` [Buildroot] [PATCH V4 1/1] boot/uboot: " Peter Korsgaard 1 sibling, 1 reply; 4+ messages in thread From: Pauli Sundberg @ 2016-03-29 17:22 UTC (permalink / raw) To: buildroot Signed-off-by: Pauli Sundberg <susundberg@gmail.com> --- linux/Config.in | 12 +++++++++--- linux/linux.mk | 3 +++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/linux/Config.in b/linux/Config.in index 93968cd..187fcad 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -63,6 +63,12 @@ config BR2_LINUX_KERNEL_CUSTOM_HG This option allows Buildroot to get the Linux kernel source code from a Mercurial repository. +config BR2_LINUX_KERNEL_CUSTOM_SVN + bool "Custom Subversion repository" + help + This option allows Buildroot to get the Linux kernel source + code from a Subversion repository. + config BR2_LINUX_KERNEL_CUSTOM_LOCAL bool "Local directory" help @@ -79,7 +85,7 @@ config BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION string "URL of custom kernel tarball" depends on BR2_LINUX_KERNEL_CUSTOM_TARBALL -if BR2_LINUX_KERNEL_CUSTOM_GIT || BR2_LINUX_KERNEL_CUSTOM_HG +if BR2_LINUX_KERNEL_CUSTOM_GIT || BR2_LINUX_KERNEL_CUSTOM_HG || BR2_LINUX_KERNEL_CUSTOM_SVN config BR2_LINUX_KERNEL_CUSTOM_REPO_URL string "URL of custom repository" @@ -91,7 +97,7 @@ config BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION default BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION \ if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != "" # legacy help - Revision to use in the typical format used by Git/Mercurial + Revision to use in the typical format used by Git/Mercurial/Subversion E.G. a sha id, a tag, branch, .. endif @@ -109,7 +115,7 @@ config BR2_LINUX_KERNEL_VERSION if BR2_LINUX_KERNEL_CUSTOM_VERSION default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL default BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION \ - if BR2_LINUX_KERNEL_CUSTOM_GIT || BR2_LINUX_KERNEL_CUSTOM_HG + if BR2_LINUX_KERNEL_CUSTOM_GIT || BR2_LINUX_KERNEL_CUSTOM_HG || BR2_LINUX_KERNEL_CUSTOM_SVN default "custom" if BR2_LINUX_KERNEL_CUSTOM_LOCAL # diff --git a/linux/linux.mk b/linux/linux.mk index 7e20255..317587f 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -23,6 +23,9 @@ LINUX_SITE_METHOD = git else ifeq ($(BR2_LINUX_KERNEL_CUSTOM_HG),y) LINUX_SITE = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_REPO_URL)) LINUX_SITE_METHOD = hg +else ifeq ($(BR2_LINUX_KERNEL_CUSTOM_SVN),y) +LINUX_SITE = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_REPO_URL)) +LINUX_SITE_METHOD = svn else LINUX_SOURCE = linux-$(LINUX_VERSION).tar.xz ifeq ($(BR2_LINUX_KERNEL_CUSTOM_VERSION),y) -- 1.9.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH V4 1/1] linux: Add custom Subversion repository support for the package 2016-03-29 17:22 ` [Buildroot] [PATCH V4 1/1] linux: " Pauli Sundberg @ 2016-04-05 20:29 ` Peter Korsgaard 0 siblings, 0 replies; 4+ messages in thread From: Peter Korsgaard @ 2016-04-05 20:29 UTC (permalink / raw) To: buildroot >>>>> "Pauli" == Pauli Sundberg <susundberg@gmail.com> writes: > Signed-off-by: Pauli Sundberg <susundberg@gmail.com> Committed, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH V4 1/1] boot/uboot: Add custom Subversion repository support for the package 2016-03-29 17:22 ` [Buildroot] [PATCH V4 1/1] boot/uboot: Add custom Subversion repository support for the package Pauli Sundberg 2016-03-29 17:22 ` [Buildroot] [PATCH V4 1/1] linux: " Pauli Sundberg @ 2016-04-05 20:29 ` Peter Korsgaard 1 sibling, 0 replies; 4+ messages in thread From: Peter Korsgaard @ 2016-04-05 20:29 UTC (permalink / raw) To: buildroot >>>>> "Pauli" == Pauli Sundberg <susundberg@gmail.com> writes: > Signed-off-by: Pauli Sundberg <susundberg@gmail.com> Committed, thanks. -- Bye, Peter Korsgaard ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-04-05 20:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <56f9c5e03b04a_e97196065823599@ultri2.mail>
2016-03-29 17:22 ` [Buildroot] [PATCH V4 1/1] boot/uboot: Add custom Subversion repository support for the package Pauli Sundberg
2016-03-29 17:22 ` [Buildroot] [PATCH V4 1/1] linux: " Pauli Sundberg
2016-04-05 20:29 ` Peter Korsgaard
2016-04-05 20:29 ` [Buildroot] [PATCH V4 1/1] boot/uboot: " Peter Korsgaard
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox