forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dependency on pigweed (project-chip#1264)
* Add dependency on pigweed Pigweed is a open source project containing libraries and tools for embedded development. It provides a package management system that downloads versioned development tools including ARM GCC, cmake, GN, ninja, openocd, and python on Linux, Mac, & Windows. These packages are hosted by Google in CIPD, which is part of Chrome's open source infrastructure. Using the tools provided by pigweed is not required, but having the option of using a reproducible development environment is useful, especially for new developers. Usage: source bootstrap.sh # first time and after an update source activate.sh # setup environment from prior bootstrap * Add CHIP branding to bootstrap Co-authored-by: Keir Mierle <[email protected]>
- Loading branch information
Showing
5 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
▄███▒ ░▓█ ░▓█ ░▓█▓ ▒█████▄ | ||
██▒ ▀█▒ ▒█ ▒█ ░█▒ ▒█░ █░ | ||
█▓░ ▒██████ ░█▒ ▒█▄▄▄█░ | ||
▓█ █▒ ▒█ ▒█ ░█░ ▒█▀ | ||
░▓███▀ ░▓███░▓█▒ ░█░ ▒█ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CHIP_ROOT="$(dirname "$0")" | ||
|
||
export PW_BRANDING_BANNER="$CHIP_ROOT/.chip-banner.txt" | ||
export PW_BRANDING_BANNER_COLOR="bold_white" | ||
|
||
source "$CHIP_ROOT/third_party/pigweed/activate.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CHIP_ROOT="$(dirname "$0")" | ||
|
||
export PW_BRANDING_BANNER="$CHIP_ROOT/.chip-banner.txt" | ||
export PW_BRANDING_BANNER_COLOR="bold_white" | ||
|
||
git submodule update --init | ||
|
||
source "$CHIP_ROOT/third_party/pigweed/bootstrap.sh" |
Submodule pigweed
added at
16bde6