diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-15 13:32:41 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-15 13:32:41 -0500 |
| commit | fa3c60da8207b724d292b7a44633872c6bfec4c8 (patch) | |
| tree | 195af6554fe5ead88cda54a8361963666c923251 /bootstrap | |
initial commit
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'bootstrap')
| -rwxr-xr-x | bootstrap | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..0500d3f --- /dev/null +++ b/bootstrap @@ -0,0 +1,14 @@ +#!/bin/sh + +if [[ ! -d cc/toolchain ]] +then + git clone https://github.com/sigsegv7/osmora-toolchain cc/toolchain +fi + +if [[ ! -d boot ]] +then + git clone https://github.com/limine-bootloader/limine.git --branch=v9.3.0-binary --depth=1 boot/limine + make -C boot/limine +fi + +autoconf |
