summaryrefslogtreecommitdiff
path: root/Kernel/makeall.sh
blob: e5292555044611cacdca4ed25415d2c8fce3ca5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
set -e

script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
cd "$script_path"

# Get user and group details for setting qemu disk image ownership
build_user=$(id -u)
build_group=$(id -g)
export build_user
export build_group

sudo id

make -C ../ clean && \
    make -C ../ && \
    make -C ../ test && \
    make -C ../ install &&
    sudo -E PATH="$PATH" ./build-image-qemu.sh