feat: prep for AST1

This commit is contained in:
2025-03-03 21:04:44 -05:00
parent 6edf0d19dc
commit a5e4d19200
5 changed files with 159 additions and 1 deletions

23
recompile.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
set -e
# Configure the build.
cd ~/os161/src
./configure --ostree=$HOME/os161/root
# Build userland.
bmake -j 10
bmake install
# Configure a kernel.
cd kern/conf
./config DUMBVM
# Compile and install the kernel
cd ~/os161/src/kern/compile/DUMBVM
bmake depend -j 10
bmake -j 10
bmake install
echo "Kernel + Userland baked fresh ! :)"