diff options
-rw-r--r-- | build/config.mk | 15 | ||||
-rw-r--r-- | build/product.mk | 23 | ||||
-rw-r--r-- | build/target/product/security/leaf.x509.pem | 20 |
3 files changed, 58 insertions, 0 deletions
diff --git a/build/config.mk b/build/config.mk new file mode 100644 index 0000000..fc072c1 --- /dev/null +++ b/build/config.mk @@ -0,0 +1,15 @@ +# Copyright (C) 2025 The LeafOS 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. + +-include vendor/extra/BoardConfigExtra.mk diff --git a/build/product.mk b/build/product.mk new file mode 100644 index 0000000..3ff84cb --- /dev/null +++ b/build/product.mk @@ -0,0 +1,23 @@ +# Copyright (C) 2025 The LeafOS 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. + +$(call inherit-product-if-exists, vendor/extra/product.mk) + +# OTA +PRODUCT_EXTRA_RECOVERY_KEYS += \ + vendor/leaf/build/target/product/security/leaf + +# Overlays +PRODUCT_PACKAGE_OVERLAYS += \ + vendor/leaf/overlay diff --git a/build/target/product/security/leaf.x509.pem b/build/target/product/security/leaf.x509.pem new file mode 100644 index 0000000..c60a85d --- /dev/null +++ b/build/target/product/security/leaf.x509.pem @@ -0,0 +1,20 @@ +-----BEGIN CERTIFICATE----- +MIIDSTCCAjGgAwIBAgIUflQXewvSzYaSLIodjVBUxGoxlwQwDQYJKoZIhvcNAQEL +BQAwMzEPMA0GA1UECgwGTGVhZk9TMQ8wDQYDVQQLDAZMZWFmT1MxDzANBgNVBAMM +BkxlYWZPUzAgFw0yMjEwMTYwNjQ3MDJaGA8yMDUwMDMwMzA2NDcwMlowMzEPMA0G +A1UECgwGTGVhZk9TMQ8wDQYDVQQLDAZMZWFmT1MxDzANBgNVBAMMBkxlYWZPUzCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5ZK81QKtqbE/CR6/M7ODS0 +rlWevPSXvMV0mqBdKI3Pbit3iYOAeo4A/vgxcJFtNOu+yk5xykXVngwWtCkLWPrS +141eh5xck4Var7eSEgPyRmyPZBcFPmUwEAAnJ5rYZdDL80mO15aRjcFXM29eIqOY +9qSTMy2Kt0OivcV/sB0OTwrUiHiJ1HZhcell835T/cfp117RfNtiOaKDXRzQdN4b +HDr3DOQ+VT4onmGw+2/gRuPUWqCat4vp3dCg8Sei0zSYwlt4SBFVARXnvJv5o20f +7chiCGwNRKgj3C22Qkkgeaf8VbNrAhUXyayLA2+QYULs3u3p2IkWoqAEYbFfODcC +AwEAAaNTMFEwHQYDVR0OBBYEFBc5q56ApUIWZEgWBM6cSJPhQFTAMB8GA1UdIwQY +MBaAFBc5q56ApUIWZEgWBM6cSJPhQFTAMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZI +hvcNAQELBQADggEBAD5u7gVlyouh7z/ZK73KwWX6ik7h90pOjHoF4pZfK/jwM4N9 +hC/+KOzs2QuuiqksU8UyfMohQbeRUNNFae11cw7Idmmy5VWaObGpsOilj6E+HJIe +xHcD0CbZdqW2WrrlMQg2HYqg0ZYhiCUDcS8j8IVHpSAIfQILaYdPE2U+YzKfgwS4 +xrUl2EB5N8VzGtboWFHBoMqvjZltswlGHau0rrYmjE/im8YiSKsMng07tZlSVBQM +1JI6r/ixg03BwkMEFheF2OhVCt4AYJvazu2iRVcxcY1DZR8ChCW7g6AZU7cC6G71 +peGRcl+Ef8oiC9KxiUZie70TKAfFKCCPpUUWImE= +-----END CERTIFICATE----- |