From 6715b9e21e21fd390186c02ba1da43201fac431f Mon Sep 17 00:00:00 2001 From: oxmc <67136658+oxmc@users.noreply.github.com> Date: Fri, 12 Jun 2026 18:09:41 -0700 Subject: [PATCH] vendor: add default-vendor-config.mk for Config Provisioner Ships the common vendor.cfg to the vendor partition. Device trees inherit this by default; they can switch to their own device-specific vendor.cfg by commenting out the inherit-product call and uncommenting their own PRODUCT_COPY_FILES entry. --- config/default-vendor-config.mk | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 config/default-vendor-config.mk diff --git a/config/default-vendor-config.mk b/config/default-vendor-config.mk new file mode 100644 index 0000000..3a79454 --- /dev/null +++ b/config/default-vendor-config.mk @@ -0,0 +1,6 @@ +# Default Config Provisioner vendor config. +# Copies the common vendor.cfg from pawlet_rpi_common to the vendor partition. +# Device-specific builds can override this by NOT inheriting this file and instead +# uncommenting their own PRODUCT_COPY_FILES entry pointing to their own vendor.cfg. +PRODUCT_COPY_FILES += \ + device/pawlet/rpi/configs/provisioner/vendor.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/config_provisioner/vendor.cfg