From e7eb798cf10ec3c5a604ba4bbf322d66defe53de Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Thu, 24 Jan 2019 22:12:28 -0700 Subject: [PATCH] west: add west.yml This is the west manifest file for mainline zephyr. For a burn-in period, we are going to keep west pointing at master to avoid deps rolls as we iron out any kinks. We can then set its revision to a SHA after things settle down. The projects key is mandatory (if there's only one repository, there wouldn't be much need for west!) so we'll start things off with the net-tools repository at its current master SHA. Signed-off-by: Marti Bolivar --- west.yml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 west.yml diff --git a/west.yml b/west.yml new file mode 100644 index 00000000000..67fc4e2d6a0 --- /dev/null +++ b/west.yml @@ -0,0 +1,41 @@ +# The west manifest file for upstream Zephyr. +# +# The per-installation west configuration file, .west/config, sets the +# path to the project containing this file in the [manifest] section's +# "path" variable. +# +# You are free to create your own manifest files and put them in any +# repository you want, to create your own custom Zephyr installations. +# For example, you could create a manifest file in your own out of +# tree application directory, which would pull this zephyr repository +# in as an ordinary project. +# +# You can pass your manifest repositories to west init when creating a +# new Zephyr installation. See the west documentation for more +# information. + +west: + url: https://github.com/zephyrproject-rtos/west + revision: master + +manifest: + defaults: + remote: upstream + + remotes: + - name: upstream + url-base: https://github.com/zephyrproject-rtos + + # The initial list of external projects is just Zephyr's net-tools + # repository, which is useful for running the Zephyr networking + # stack in QEMU. + # + # This will grow over time as external code is migrated into its own + # repositories. + projects: + - name: net-tools + revision: 30b7efa827b04d2e47840716b0372737fe7d6c92 + + self: + path: zephyr + west-commands: scripts/west-commands.yml