summaryrefslogtreecommitdiff
authorJean-Baptiste Queru <jbq@google.com>2010-03-12 22:02:56 (GMT)
committer Jean-Baptiste Queru <jbq@google.com>2010-03-12 22:02:56 (GMT)
commitd468cbeb023507ce9c0e01e688038b9c56c403e7 (patch)
treee1e009b455f93a00e96bde511dfe8640a670b1c9
parentbcf948a6887d1d1a3bcb5efa747acccc21a8b7d4 (diff)
downloadcommon-d468cbeb023507ce9c0e01e688038b9c56c403e7.zip
common-d468cbeb023507ce9c0e01e688038b9c56c403e7.tar.gz
common-d468cbeb023507ce9c0e01e688038b9c56c403e7.tar.bz2
Move gps.conf to a common location
Change-Id: Idd1cae3d91b7701bc5e64c739ba0103d914ff2e2
Diffstat
-rw-r--r--gps/gps.conf_AS4
-rw-r--r--gps/gps.conf_AS_SUPL6
-rw-r--r--gps/gps.conf_EU4
-rw-r--r--gps/gps.conf_EU_SUPL6
-rw-r--r--gps/gps.conf_US4
-rw-r--r--gps/gps.conf_US_SUPL6
-rw-r--r--gps/gps_as.mk18
-rw-r--r--gps/gps_as_supl.mk18
-rw-r--r--gps/gps_eu.mk18
-rw-r--r--gps/gps_eu_supl.mk18
-rw-r--r--gps/gps_us.mk18
-rw-r--r--gps/gps_us_supl.mk18
12 files changed, 138 insertions, 0 deletions
diff --git a/gps/gps.conf_AS b/gps/gps.conf_AS
new file mode 100644
index 0000000..510f656
--- a/dev/null
+++ b/gps/gps.conf_AS
@@ -0,0 +1,4 @@
+NTP_SERVER=asia.pool.ntp.org
+XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
+XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
+XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
diff --git a/gps/gps.conf_AS_SUPL b/gps/gps.conf_AS_SUPL
new file mode 100644
index 0000000..51154b9
--- a/dev/null
+++ b/gps/gps.conf_AS_SUPL
@@ -0,0 +1,6 @@
+NTP_SERVER=asia.pool.ntp.org
+XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
+XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
+XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
+SUPL_HOST=supl.google.com
+SUPL_PORT=7276
diff --git a/gps/gps.conf_EU b/gps/gps.conf_EU
new file mode 100644
index 0000000..49dffbe
--- a/dev/null
+++ b/gps/gps.conf_EU
@@ -0,0 +1,4 @@
+NTP_SERVER=europe.pool.ntp.org
+XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
+XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
+XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
diff --git a/gps/gps.conf_EU_SUPL b/gps/gps.conf_EU_SUPL
new file mode 100644
index 0000000..926f884
--- a/dev/null
+++ b/gps/gps.conf_EU_SUPL
@@ -0,0 +1,6 @@
+NTP_SERVER=europe.pool.ntp.org
+XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
+XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
+XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
+SUPL_HOST=supl.google.com
+SUPL_PORT=7276
diff --git a/gps/gps.conf_US b/gps/gps.conf_US
new file mode 100644
index 0000000..5abbd5c
--- a/dev/null
+++ b/gps/gps.conf_US
@@ -0,0 +1,4 @@
+NTP_SERVER=north-america.pool.ntp.org
+XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
+XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
+XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
diff --git a/gps/gps.conf_US_SUPL b/gps/gps.conf_US_SUPL
new file mode 100644
index 0000000..b766326
--- a/dev/null
+++ b/gps/gps.conf_US_SUPL
@@ -0,0 +1,6 @@
+NTP_SERVER=north-america.pool.ntp.org
+XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
+XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
+XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
+SUPL_HOST=supl.google.com
+SUPL_PORT=7276
diff --git a/gps/gps_as.mk b/gps/gps_as.mk
new file mode 100644
index 0000000..2319a63
--- a/dev/null
+++ b/gps/gps_as.mk
@@ -0,0 +1,18 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+PRODUCT_COPY_FILES := \
+ device/common/gps/gps.conf_AS:system/etc/gps.conf
diff --git a/gps/gps_as_supl.mk b/gps/gps_as_supl.mk
new file mode 100644
index 0000000..95470e9
--- a/dev/null
+++ b/gps/gps_as_supl.mk
@@ -0,0 +1,18 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+PRODUCT_COPY_FILES := \
+ device/common/gps/gps.conf_AS_SUPL:system/etc/gps.conf
diff --git a/gps/gps_eu.mk b/gps/gps_eu.mk
new file mode 100644
index 0000000..e2cabac
--- a/dev/null
+++ b/gps/gps_eu.mk
@@ -0,0 +1,18 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+PRODUCT_COPY_FILES := \
+ device/common/gps/gps.conf_EU:system/etc/gps.conf
diff --git a/gps/gps_eu_supl.mk b/gps/gps_eu_supl.mk
new file mode 100644
index 0000000..e9a6f5d
--- a/dev/null
+++ b/gps/gps_eu_supl.mk
@@ -0,0 +1,18 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+PRODUCT_COPY_FILES := \
+ device/common/gps/gps.conf_EU_SUPL:system/etc/gps.conf
diff --git a/gps/gps_us.mk b/gps/gps_us.mk
new file mode 100644
index 0000000..e4eb2ab
--- a/dev/null
+++ b/gps/gps_us.mk
@@ -0,0 +1,18 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+PRODUCT_COPY_FILES := \
+ device/common/gps/gps.conf_US:system/etc/gps.conf
diff --git a/gps/gps_us_supl.mk b/gps/gps_us_supl.mk
new file mode 100644
index 0000000..3416f1d
--- a/dev/null
+++ b/gps/gps_us_supl.mk
@@ -0,0 +1,18 @@
+#
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+PRODUCT_COPY_FILES := \
+ device/common/gps/gps.conf_US_SUPL:system/etc/gps.conf