From c2f2b112d128380b13299d49aee399762f03e181 Mon Sep 17 00:00:00 2001 From: Gregory Shue Date: Thu, 27 Aug 2020 09:03:06 -0700 Subject: [PATCH] Add top-level west.yml to become a west manifest repo --- west.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 west.yml diff --git a/west.yml b/west.yml new file mode 100644 index 00000000..f0a96fb0 --- /dev/null +++ b/west.yml @@ -0,0 +1,25 @@ +# The top-level west manifest file for upstream bacnet-stack. + +# This top-level west manifest file intentionally provides only the +# minimal configuration necessary for a successful 'west init', in +# expectation that multiple manifests will exist within one branch +# of this repository. Once 'west init' has completed, west may be +# configured to use alternate manfiests with the following command: +# +# west config manifest.path +# +# e.g. west config manifest.path zephyr/manifests/nrf5 + +# NOTE: Since the schema requires at least one project name, +# the mapping of this repository must be described as a project +# rather than under the 'self' key. + +manifest: + remotes: + - name: self + url-base: https://github.com/bacnet-stack + projects: + - name: bacnet-stack + remote: self + revision: master # The main branch of this repository +