summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Maiolino <[email protected]>2025-07-17 19:20:27 +0200
committerCarlos Maiolino <[email protected]>2025-07-17 19:20:27 +0200
commit7bcc28cb58e99927e14636fe199c5345f6c63a6f (patch)
tree6f7738151d5986e97b5f0f253fdb8afa8d1d1747
parent9474d5fd709f6d26e09e6aebf82f2c83d1dd2e87 (diff)
Add build script
Add a small script to use the cross compiler (from my machine), to build the kernel Signed-off-by: Carlos Maiolino <[email protected]>
-rw-r--r--build.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.sh b/build.sh
new file mode 100644
index 0000000..ff9b513
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+export PREFIX=/home/cmaiolino/opt/cross
+export PATH="$PREFIX/bin:$PATH"
+export TARGET=i686-elf
+make all