summaryrefslogtreecommitdiff
path: root/zephyr-env.sh
AgeCommit message (Collapse)Author
2017-03-31zephyr-env.sh: only reset scripts_path on WindowsMarti Bolivar
The pipeline that converts scripts_path from "C:\" style to "/c/" style is only needed on Windows. Further, on Linux, it prepends an extra "/" to what gets added to PATH, since the pwd output already has a leading "/". Fix that by only making the change when we're building on Windows. Change-Id: Ied7e4491f171d82e8dee4c3a4dfdcf64adf46efd Signed-off-by: Marti Bolivar <marti.bolivar@linaro.org>
2017-03-31zephyr-env.sh: unset PWD_OPT after using itMarti Bolivar
Change-Id: I9d78983233097c725869c4467a20189e2b859bab Signed-off-by: Marti Bolivar <marti.bolivar@linaro.org>
2017-03-31zephyr-env.sh: fix stale commentMarti Bolivar
s/zephyr-env_install.bash/.zephyrrc/ Change-Id: I88d4a5d44b6fb97d52b8244cb3d1bcb8679b49ef Signed-off-by: Marti Bolivar <marti.bolivar@linaro.org>
2017-03-17build: Add support for MSYS2Carles Cufi
MSYS2 is a modern fork of Cygwin that is widely supported and provides frequent releases and good support. It is also the framework used by the official Windows Git port. This patch adds MSYS2 support so that builds on Windows using MSYS2 work properly. Change-Id: Ia5743a410d1cff983a7aab37f8e3d8228cb8ae8e Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2017-01-19license: Replace Apache boilerplate with SPDX tagDavid B. Kinder
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-07zephyr-env: don't fail unnecesarily when 'set -e'Inaky Perez-Gonzalez
The way the PATH modification bit was set was failing unnecesarily when the shell is being ran with -e (fail on error), which is leading to unnecessary (and dangerous) workarounds in integration scripts. So wrap it in an if sentence, so the shell doesn't bail out when the grep fails to find the scripts_path in PATH. Change-Id: Ia88a5f430e08ef4c186d11834f4cd840ccd29f7f Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
2016-10-15win-build: corrects scripts_path for windows build.Sonia Leon Bautista
Corrects the format for scripts_path from C:/ to /c/ to be added to PATH correctly. Change-Id: I2668dff2b9b6f20a25651f629c7a134e9426ee97 Signed-off-by: Sonia Leon Bautista <sonia.leon.bautista@intel.com>
2016-08-05zephyr-env.sh: prepend to PATHAndrew Boie
Currently, if you source this in one Zephyr tree and then source it again in a second copy, the PATH will still prefer tools and scripts the first Zephyr tree. Change-Id: I658231025b155d19a2bffa25b8062be7ccd06da4 Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2016-03-18zephyr-env.sh: Add a note to indicate the required version of zshd0u9
For zsh users, to successfully source this environment set up script, the version of zsh need to be 5.0.6 or above. Users can download the newest zsh at http://zsh.sourceforge.net/Arc/source.html, and then install it manually. Change-Id: I1877b4030cf8688bce6b2483c302f957f4a5506f Signed-off-by: d0u9 <d0u9.su@outlook.com>
2016-03-03zephyr-env.sh: Set correctly $ZEPHYR_BASE in zshYannis Damigos
Sourcing project environment file failed to set correctly $ZEPHYR_BASE in zsh if it was sourced from another directory (e.g. home directory). This patch fixes this issue. It was tested on zsh, bash and sh on Linux. It needs to be tested on OS X. Change-Id: Idfb11c6a3109042a9f578f38b3849d9cf9c31f95 Signed-off-by: Yannis Damigos <giannis.damigos@gmail.com>
2016-03-02zephyr-env.sh: Fixed sourcing the project environment fileYannis Damigos
In zsh the value of $0 depends on the FUNCTION_ARGZERO option which is set by default. FUNCTION_ARGZERO, when it is set, sets $0 temporarily to the name of the function/script when executing a shell function or sourcing a script. POSIX_ARGZERO option, when it is set, exposes the original value of $0 in spite of the current FUNCTION_ARGZERO setting. This patch allows to source the project environment file from both zsh and bash. It also removes the -z option from the basename command which is missing in OS X. Change-Id: I5a32404784d9064bf749fa58b4d73d4b56c908c2 Signed-off-by: Yannis Damigos <giannis.damigos@gmail.com>
2016-03-01add missing license to zephyr-env.shBenjamin Walsh
Change-Id: I0a43e634534ee1cb43c6ad2dc966d9ee20e0b9e5 Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
2016-02-27zephyr-env.sh: Fixed sourcing the project environment file from zshYannis Damigos
It will possible to source the project environment file from both zsh and bash. Change-Id: Ib6cbf4259378433bcf28a042898b69bb4b6b2a82 Signed-off-by: Yannis Damigos <giannis.damigos@gmail.com>
2016-02-17Use .zephyrrc for initializing common variablesAnas Nashif
The file can be used to define variables used by the SDK to avoid having to define them everytime a session is started. The old file names ~/zephyr-env_install.bash will still work but it will warn about the file being renamed. We do not want to break users who have ~/zephyr-env_install.bash in their home and depend on it. Change-Id: I04fcaa76854bda3dcfc1cabe75e00e95c511b10d Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-02-12build: changes order in which paths are added to $PATHJuan Manuel Cruz
MinGW expects to have new program locations added to the end of the PATH variable. Change-Id: Ifd31b63c9ef39a7f2b416ffef39461290c822dd7 Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@intel.com> Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
2016-02-05mingw: Use windows path style when building with MinGWLouise Mendoza
When building with MinGW the base path has to be with the windows style format path. Change-Id: I67c116c424e6ad70cc0e1a4fc1620361eaabbb82 Signed-off-by: Louise Mendoza <yonattan.a.louise.mendoza@intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-02-05Make zephyr-env.sh work when cd is aliasedMatthew Braun
Force the zephyr-env.sh script to invoke the builtin 'cd' command so that the script correctly assigns ZEPHYR_BASE, even for users who alias the 'cd' command. Aliasing 'cd' to emit a string before changing the directory is one way of putting the current working directory in the title of a terminal window. If the user's alias is executed in zephyr-env.sh, the output of 'cd' pollutes ZEPHYR_BASE, resulting in value which won't build. Signed-off-by: Matt Braun <matthew.braun@intel.com> Change-Id: I8d7810d1a44ec14102d07bf35610b47d06ac1015
2016-02-05Rename Zephyr OS into Zephyr KernelAnas Nashif
We are a kernel, not an OS. Change-Id: Ib987e3e511e1bdbed6293ab5e15e598bff00b09b Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-02-05env: fix check for sourcing vs running zephyr-env.shBenjamin Walsh
File name had wrong extension. Change-Id: I9b8f57d21b2a497bf53e159a62dfee24a4c5de21 Reported-by: Rick Demers <richard.demers@windriver.com> Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
2016-02-05Rename timo-env.sh to zephyr-env.shAnas Nashif
Change-Id: I50dfa427f87c1f2a90facf54ef3b58cd4c47a0ec Signed-off-by: Anas Nashif <anas.nashif@intel.com>