From: Jan Kiszka <[email protected]> Allow to enhance the customizations via a local.inc that is outside of versioning control, e.g. to inject wifi credentials.
Signed-off-by: Jan Kiszka <[email protected]> --- .gitignore | 1 + recipes-core/customizations/customizations.bb | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index fd87a39..fe0ae1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build/ isar/ +recipes-core/customizations/local.inc diff --git a/recipes-core/customizations/customizations.bb b/recipes-core/customizations/customizations.bb index 5cd20f8..fad394e 100644 --- a/recipes-core/customizations/customizations.bb +++ b/recipes-core/customizations/customizations.bb @@ -13,6 +13,9 @@ PN = "customizations-${MACHINE}" inherit dpkg-raw +# optional local customizations, not part of the repository +include local.inc + DESCRIPTION = "demo image customizations" SRC_URI = " \ -- 2.16.4 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
