diff options
| author | hunter@kvog.sh <hunter@kvog.sh> | 2026-02-07 09:28:11 -0600 |
|---|---|---|
| committer | hunter@kvog.sh <hunter@kvog.sh> | 2026-02-07 09:28:11 -0600 |
| commit | 7b1ec55b45b8415047ae7a8ec9d550a0184e95e8 (patch) | |
| tree | 667a3ef40c1154a37633c96eb145c302e8de44dc /rushmore-linux/rl.sh | |
| parent | c2075e339ce7a46f96a5c63c409a2cc8e4b6b3cf (diff) | |
rl: Run rlwsd
Diffstat (limited to 'rushmore-linux/rl.sh')
| -rwxr-xr-x | rushmore-linux/rl.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/rushmore-linux/rl.sh b/rushmore-linux/rl.sh index 39614bc..a9c024d 100755 --- a/rushmore-linux/rl.sh +++ b/rushmore-linux/rl.sh @@ -7,7 +7,7 @@ BUILD_DIR="$ROOT/build" ROOTFS_DIR="$ROOT/rootfs" mkdir -p "$BUILD_DIR" -mkdir -p "$ROOTFS_DIR/proc" "$ROOTFS_DIR/sys" "$ROOTFS_DIR/dev" +mkdir -p "$ROOTFS_DIR" echo "Compiling rlinit" musl-gcc -static -O2 -s rlinit/rlinit.c -o "$BUILD_DIR/init" @@ -23,4 +23,10 @@ echo "Building initramfs" (cd "$ROOTFS_DIR" && find . -print0 | cpio --null -ov --format=newc) > "$BUILD_DIR/initramfs.cpio" echo "Running QEMU (do CTRL+A then X to quit)" -qemu-system-x86_64 -kernel linux/arch/x86/boot/bzImage -initrd "$BUILD_DIR/initramfs.cpio" -append "console=ttyS0" -nographic
\ No newline at end of file +qemu-system-x86_64 \ + -kernel linux/arch/x86/boot/bzImage \ + -initrd "$BUILD_DIR/initramfs.cpio" \ + -append "console=ttyS0 video=vesafb:1024x768-32" \ + -serial mon:stdio \ + -vga std \ + -display sdl
\ No newline at end of file |