Skip to content

Commit 871ce0b

Browse files
mspangkeir
andauthored
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 <keir@google.com>
1 parent ca6a3d9 commit 871ce0b

File tree

5 files changed

+24
-0
lines changed

5 files changed

+24
-0
lines changed

.chip-banner.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
▄███▒ ░▓█ ░▓█ ░▓█▓ ▒█████▄
2+
██▒ ▀█▒ ▒█ ▒█ ░█▒ ▒█░ █░
3+
█▓░ ▒██████ ░█▒ ▒█▄▄▄█░
4+
▓█ █▒ ▒█ ▒█ ░█░ ▒█▀
5+
░▓███▀ ░▓███░▓█▒ ░█░ ▒█
6+

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@
1919
[submodule "examples/common/m5stack-tft/repo"]
2020
path = examples/common/m5stack-tft/repo
2121
url = https://github.com/jeremyjh/ESP32_TFT_library.git
22+
[submodule "third_party/pigweed"]
23+
path = third_party/pigweed
24+
url = https://pigweed.googlesource.com/pigweed/pigweed

activate.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CHIP_ROOT="$(dirname "$0")"
2+
3+
export PW_BRANDING_BANNER="$CHIP_ROOT/.chip-banner.txt"
4+
export PW_BRANDING_BANNER_COLOR="bold_white"
5+
6+
source "$CHIP_ROOT/third_party/pigweed/activate.sh"

bootstrap.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CHIP_ROOT="$(dirname "$0")"
2+
3+
export PW_BRANDING_BANNER="$CHIP_ROOT/.chip-banner.txt"
4+
export PW_BRANDING_BANNER_COLOR="bold_white"
5+
6+
git submodule update --init
7+
8+
source "$CHIP_ROOT/third_party/pigweed/bootstrap.sh"

third_party/pigweed

Submodule pigweed added at 16bde6b

0 commit comments

Comments
 (0)