aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-01-04 16:25:43 +0100
committerMarvin Borner2020-01-04 16:25:43 +0100
commit1f86d1cdb5cb6fbef224614f162f1d0be4597ac9 (patch)
tree3769acce4a0a79fba93d83e223239e70cbac1396 /run
parenta2716bd24b9f7bf7b58452735962510ce1971b52 (diff)
Added dynamic install parameter
Pure awesomeness
Diffstat (limited to 'run')
-rwxr-xr-xrun26
1 files changed, 16 insertions, 10 deletions
diff --git a/run b/run
index b916941..4f3afc0 100755
--- a/run
+++ b/run
@@ -1,13 +1,19 @@
#!/usr/bin/env sh
-NETWORK="rtl8139"
+mode="${1}"
+network="rtl8139"
qemu_with_flags() {
- qemu-system-i386 -no-reboot -vga std -smp "$(nproc)" -serial stdio -rtc base=localtime -m 256M -net nic,model=${NETWORK},macaddr=42:42:42:42:42:42 -net user "$@"
+ qemu-system-i386 -no-reboot -vga std -smp "$(nproc)" -serial stdio -rtc base=localtime -m 256M -net nic,model=${network},macaddr=42:42:42:42:42:42 -net user "$@"
}
compile_with_flags() {
- i686-elf-gcc -std=gnu99 -ffreestanding -O3 -nostdlib -Wall -Wextra -Wno-unused-parameter "$@"
+ if [ "${mode}" = "image" ]; then
+ i686-elf-gcc -std=gnu99 -ffreestanding -O3 -nostdlib -Wall -Wextra -Wno-unused-parameter -D INSTALL_MELVIX "$@"
+ else
+ i686-elf-gcc -std=gnu99 -ffreestanding -O3 -nostdlib -Wall -Wextra -Wno-unused-parameter "$@"
+ fi
+
}
make_cross() {
@@ -75,7 +81,7 @@ make_build() {
stripped=$(echo "${line}" | sed -r 's/\//_/g')
stripped=${stripped#??????}
stripped=${stripped%%?}o
- compile_with_flags -c ./"${line}" -I ./src -D ${NETWORK} -o ./build/kernel/"${stripped}" || exit
+ compile_with_flags -c ./"${line}" -I ./src -D ${network} -o ./build/kernel/"${stripped}" || exit
done <./build/tmp
rm ./build/tmp
@@ -131,22 +137,22 @@ make_clean() {
rm -rf ./build ./iso
}
-if [ "${1}" = "cross" ]; then
+if [ "${mode}" = "cross" ]; then
make_cross
-elif [ "${1}" = "build" ]; then
+elif [ "${mode}" = "build" ]; then
make_cross
make_clean
make_build
-elif [ "${1}" = "clean" ]; then
+elif [ "${mode}" = "clean" ]; then
make_clean
-elif [ "${1}" = "test" ]; then
+elif [ "${mode}" = "test" ]; then
make_cross
make_clean
make_build
make_test
-elif [ "${1}" = "debug" ]; then
+elif [ "${mode}" = "debug" ]; then
make_debug
-elif [ "${1}" = "image" ]; then
+elif [ "${mode}" = "image" ]; then
make_cross
make_clean
make_build