summaryrefslogtreecommitdiff
path: root/kernel/build.sh
blob: 7986ee1e27b1baf57d4d6eb250aacae0221b974a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/sh

remove_target() {
    rm -rf target &> /dev/null
}

create_target() {
    mkdir target &> /dev/null
    mkdir target/temp &> /dev/null
}

cleanup_temp() {
    rm -f target/temp/* &> /dev/null
}

# ---------------------------------------------------

build_kernel() {
    create_target
    nasm -felf64 multiboot_header.asm -o target/temp/multiboot_header.o
    nasm -felf64 boot.asm -o target/temp/boot.o
    ld -n -o target/kernel.bin -T linker.ld target/temp/*.o
    cleanup_temp
}

build_init() {
    create_target
}

build_clean() {
    remove_target
}

build_all() {
    build_kernel
}

not_exec=true

for arg in "$@"; do
    case "$arg" in
        "kernel") build_kernel;;
        "init") build_init;;
        "clean") build_clean;;
        "all") build_all;;
        *)
            echo "warn: ignoring unknown option '$arg'"
            continue;;
    esac
    not_exec=false
    break
done

print_help() {
    echo "usage: $0 option"
    echo "options: "
    echo "  init          initialise directory"
    echo "  clean         cleanup binaries"
    echo
    echo "  kernel        build the kernel"
    echo "  all           build kernel"
}

if $not_exec; then
    echo "error: please specify an argument"
    echo
    print_help
    exit -1
fi