oriole: create oriole device project
split out for easy use of eg roomservice and build server
diff --git a/AndroidProducts.mk b/AndroidProducts.mk
new file mode 100644
index 0000000..376ea0d
--- /dev/null
+++ b/AndroidProducts.mk
@@ -0,0 +1,23 @@
+#
+# Copyright (C) 2019 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_MAKEFILES := \
+ $(LOCAL_DIR)/omni_oriole.mk
+
+
+COMMON_LUNCH_CHOICES := \
+ omni_oriole-userdebug \
+ omni_oriole-user
diff --git a/BoardConfig-omni.mk b/BoardConfig-omni.mk
new file mode 100644
index 0000000..89d117d
--- /dev/null
+++ b/BoardConfig-omni.mk
@@ -0,0 +1,16 @@
+#
+# Copyright (C) 2020 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.
+#
+
diff --git a/omni.dependencies b/omni.dependencies
new file mode 100644
index 0000000..c4e6351
--- /dev/null
+++ b/omni.dependencies
@@ -0,0 +1,16 @@
+[
+ {
+ "remote": "aosp",
+ "override": "platform/hardware/google/graphics/common",
+ "repository": "platform/hardware/google/graphics/common",
+ "target_path": "hardware/google/graphics/common",
+ "revision": "refs/tags/android-13.0.0_r7"
+ },
+ {
+ "remote": "aosp",
+ "override": "platform/hardware/google/graphics/gs101",
+ "repository": "platform/hardware/google/graphics/gs101",
+ "target_path": "hardware/google/graphics/gs101",
+ "revision": "refs/tags/android-13.0.0_r7"
+ }
+]
diff --git a/omni_oriole.mk b/omni_oriole.mk
new file mode 100644
index 0000000..905e54c
--- /dev/null
+++ b/omni_oriole.mk
@@ -0,0 +1,63 @@
+#
+# Copyright 2020 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.
+#
+
+# Get the prebuilt list of APNs
+$(call inherit-product, vendor/omni/config/gsm.mk)
+
+TARGET_BOOTANIMATION_SIZE := 1080p
+
+$(call inherit-product, vendor/omni/config/common.mk)
+$(call inherit-product, device/google/gs101/device-omni.mk)
+$(call inherit-product, device/google/raviole/aosp_oriole.mk)
+
+PRODUCT_NAME := omni_oriole
+PRODUCT_SYSTEM_DEVICE := oriole
+PRODUCT_SYSTEM_MODEL := Pixel 6
+PRODUCT_SYSTEM_NAME := oriole
+PRODUCT_SYSTEM_MANUFACTURER := Google
+
+PRODUCT_BUILD_PROP_OVERRIDES += \
+ PRIVATE_BUILD_DESC="oriole-user 13 TP1A.221105.002 9080065 release-keys"
+
+# TODO - could use PRODUCT_OVERRIDE_FINGERPRINT
+# defined in vendor/google_devices/oriole/proprietary/BoardConfigVendor.mk
+BUILD_FINGERPRINT := google/oriole/oriole:13/TP1A.221105.002/9080065:user/release-keys
+
+PRODUCT_RESTRICT_VENDOR_FILES := false
+
+# for bringup to disable secure adb - copy adbkey.pub from ~/.android
+#PRODUCT_ADB_KEYS := device/google/raviole/adbkey.pub
+#PRODUCT_PACKAGES += \
+ adb_keys
+
+#BOARD_BOOTCONFIG += androidboot.selinux=permissive
+#BOARD_KERNEL_CMDLINE += androidboot.selinux=permissive
+
+# TODO causes crashes
+# HBM
+#PRODUCT_COPY_FILES += \
+ device/google/raviole/permissions/permissions_com.android.hbmsvmanager.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/permissions_com.android.hbmsvmanager.xml
+
+#PRODUCT_PACKAGES += \
+ HbmSVManagerOverlay
+
+# euicc from stock
+PRODUCT_COPY_FILES += \
+ device/google/raviole/permissions/permissions_com.google.android.euicc.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/permissions_com.google.android.euicc.xml
+
+# sysconfig from stock
+PRODUCT_COPY_FILES += \
+ device/google/raviole/product-sysconfig-stock.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/sysconfig/product-sysconfig-stock.xml
\ No newline at end of file