Skip to content

Commit 0418553

Browse files
committed
strip.
1 parent f082b36 commit 0418553

2 files changed

Lines changed: 12 additions & 9 deletions

File tree

commands.bash

100644100755
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euxo pipefail
4+
15
python3 -m venv venv
26
source venv/bin/activate
37
pip install -U pip
@@ -14,5 +18,4 @@ sed -e 's/>=61.0/==68.2.2/' -i src/third_party/u-boot/files/tools/binman/pyproje
1418
sed -e 's/"pylibfdt"/"libfdt"/' -i src/third_party/u-boot/files/tools/binman/pyproject.toml
1519
pip install src/third_party/u-boot/files/tools/binman
1620

17-
# WIP:
18-
zmake -j8 build lotus --clobber -DCMAKE_MAKE_PROGRAM=(which ninja) -DGIT_EXECUTABLE=(which git)
21+
zmake -j8 build lotus -DCMAKE_MAKE_PROGRAM="$(which ninja)" -DGIT_EXECUTABLE="$(which git)"

flake.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323
buildInputs = with pkgs; [
2424
# pkgsCross.arm-embedded.buildPackages.gcc
2525
(zephyr-nix.packages.${system}.sdk-0_16.override {targets = ["arm-zephyr-eabi"];})
26-
gcc-arm-embedded
27-
gcc
28-
gnumake
29-
git-repo
30-
swig # or swig3?
26+
# gcc-arm-embedded
27+
# gcc
28+
# gnumake
29+
# git-repo
30+
# swig # or swig3?
3131
python312
3232
python312Packages.libfdt # <- 311 version fails to build
3333
dtc
3434
cmake
3535
file
3636
ninja
37-
wget
38-
uv
37+
# wget
38+
# uv
3939
];
4040
};
4141
});

0 commit comments

Comments
 (0)