summaryrefslogtreecommitdiff
path: root/bootstrap
blob: 4ad26e47333f1ff46c296d8312c27300aab8f9ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

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