Compare commits

..

No commits in common. "f19336017d00824408f7e10f873ecc81a654bbb6" and "8654300ef4e4968d7f39c1a024a3fdacb664d6c5" have entirely different histories.

2 changed files with 0 additions and 25 deletions

View File

@ -1,2 +0,0 @@
"IncludeBlocks": Preserve
"SortIncludes": Never

View File

@ -1,23 +0,0 @@
#!/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 ! :)"