diff mbox

[08/18] dim: remove integration-tree remotes

Message ID 20161021193700.22100-9-daniel.vetter@ffwll.ch (mailing list archive)
State New, archived
Headers show

Commit Message

Daniel Vetter Oct. 21, 2016, 7:36 p.m. UTC
With the remotes stored in nightly.conf and git worktrees we can avoid
hard-coding them in even more places.

Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
---
 dim | 12 ------------
 1 file changed, 12 deletions(-)
diff mbox

Patch

diff --git a/dim b/dim
index adaffecf4015..3792abe4d190 100755
--- a/dim
+++ b/dim
@@ -80,8 +80,6 @@  today=`date +%Y-%m-%d`
 drm_intel_ssh=ssh://git.freedesktop.org/git/drm-intel
 drm_intel_git=git://anongit.freedesktop.org/drm-intel
 drm_upstream_git=git://people.freedesktop.org/~airlied/linux
-sound_upstream_git=git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
-driver_core_upstream_git=git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
 linux_upstream_git=git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
 
 # email aliases
@@ -1151,16 +1149,6 @@  function dim_setup
 	else
 		remote=`get_remote_name $drm_upstream_git`
 	fi
-	if git remote | grep sound-upstream > /dev/null ; then
-		git config remote.sound-upstream.url $sound_upstream_git
-	else
-		remote=`get_remote_name $sound_upstream_git`
-	fi
-	if git remote | grep driver-core-upstream > /dev/null ; then
-		git config remote.driver-core-upstream.url $driver_core_upstream_git
-	else
-		remote=`get_remote_name $driver_core_upstream_git`
-	fi
 
 	echo "dim setup successfully completed!"
 }