diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2023-10-20 16:07:58 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2023-10-20 16:07:58 +0200 |
commit | 060a0cf338d6024eee37cc344c224fe3bcb78e81 (patch) | |
tree | 3fea7c654b69ecf3490fe9c6cbc542aba0d5bd8f /toolchains/patch | |
download | bootstrappable-toolchain-060a0cf338d6024eee37cc344c224fe3bcb78e81.tar.gz |
Initial commit
Diffstat (limited to 'toolchains/patch')
-rw-r--r-- | toolchains/patch/busybox.TARGETS | 9 | ||||
-rw-r--r-- | toolchains/patch/compiler+tools.TARGETS | 5 | ||||
-rw-r--r-- | toolchains/patch/tools-all.TARGETS | 5 |
3 files changed, 19 insertions, 0 deletions
diff --git a/toolchains/patch/busybox.TARGETS b/toolchains/patch/busybox.TARGETS new file mode 100644 index 0000000..5581cb7 --- /dev/null +++ b/toolchains/patch/busybox.TARGETS @@ -0,0 +1,9 @@ +{ "defaults": + { "type": ["@", "rules", "patch", "defaults"] + , "PATCH": ["busybox/usr/bin/patch"] + , "toolchain": ["staged-busybox"] + , "PATH": ["/bin"] + } +, "staged-busybox": + {"type": "install", "dirs": [[["", "toolchain"], "busybox"]]} +} diff --git a/toolchains/patch/compiler+tools.TARGETS b/toolchains/patch/compiler+tools.TARGETS new file mode 100644 index 0000000..86297fe --- /dev/null +++ b/toolchains/patch/compiler+tools.TARGETS @@ -0,0 +1,5 @@ +{ "defaults": + { "type": ["@", "rules", "patch", "defaults"] + , "base": [["@", "tools", "patch", "defaults"]] + } +} diff --git a/toolchains/patch/tools-all.TARGETS b/toolchains/patch/tools-all.TARGETS new file mode 100644 index 0000000..0dd1455 --- /dev/null +++ b/toolchains/patch/tools-all.TARGETS @@ -0,0 +1,5 @@ +{ "defaults": + { "type": ["@", "rules", "patch", "defaults"] + , "base": [["@", "busybox", "patch", "defaults"]] + } +} |