From 7bcc28cb58e99927e14636fe199c5345f6c63a6f Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Thu, 17 Jul 2025 19:20:27 +0200 Subject: Add build script Add a small script to use the cross compiler (from my machine), to build the kernel Signed-off-by: Carlos Maiolino --- build.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 build.sh (limited to 'build.sh') 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 -- cgit v1.2.3