blob: 70da11db60b2984c66276de994ca6f43dfaef5c7 [file] [log] [blame]
Jon Westb3049932018-08-30 18:12:11 -04001From c1b3a197dff1d1bd37aaddce051fc11ddbb41549 Mon Sep 17 00:00:00 2001
2From: Koushik Dutta <koushd@gmail.com>
3Date: Wed, 23 Aug 2017 16:13:18 +0200
4Subject: [PATCH] Revert "Add roomservice"
5
6This reverts commit 17246d24480f9b1f2278d9b785e989d1d2597a7c.
7---
8 envsetup.sh | 23 -----------------------
9 1 file changed, 23 deletions(-)
10
11diff --git a/envsetup.sh b/envsetup.sh
12index 5f45a11574..d8cf3c882f 100644
13--- a/envsetup.sh
14+++ b/envsetup.sh
15@@ -632,20 +632,6 @@ function lunch()
16 fi
17
18 check_product $product
19- if [ $? -ne 0 ]
20- then
21- # if we can't find a product, try to grab it off the BlissRoms GitHub
22- T=$(gettop)
23- cd $T > /dev/null
24- vendor/bliss/build/tools/roomservice.py $product
25- cd - > /dev/null
26- check_product $product
27- else
28- T=$(gettop)
29- cd $T > /dev/null
30- vendor/bliss/build/tools/roomservice.py $product true
31- cd - > /dev/null
32- fi
33
34 TARGET_PRODUCT=$product \
35 TARGET_BUILD_VARIANT=$variant \
36@@ -653,15 +639,6 @@ function lunch()
37 build_build_var_cache
38 if [ $? -ne 0 ]
39 then
40- echo
41- echo "** Don't have a product spec for: '$product'"
42- echo "** Do you have the right repo manifest?"
43- product=
44- fi
45-
46- if [ -z "$product" -o -z "$variant" ]
47- then
48- echo
49 return 1
50 fi
51
52--
532.17.1
54