diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-10-20 15:50:28 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-05-08 09:02:27 +0200 |
commit | e22ffe51834f916a8a4d3d466077b6dde27d4254 (patch) | |
tree | 5115c6eb231b9b7e990724a9c1fa11663aee0b46 | |
parent | 7b9a298339734146b5e7f24efbccf057a32449d0 (diff) |
added minimal openwrt toolchain build script
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rwxr-xr-x | toolchain.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/toolchain.sh b/toolchain.sh new file mode 100755 index 0000000000..f550efd6ff --- /dev/null +++ b/toolchain.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env sh + +set -e +set -x + +make tools/install $@ +make toolchain/install $@ |