aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-05-01 20:50:49 +0200
committerMarvin Borner2020-05-01 20:50:49 +0200
commit21106945c4a28d45334824c02f8b139d1db91c45 (patch)
treef215128167a17fa476ad32350c2b81fc4ebb0395 /run
parentf0439a5dbfe2cfed3d629027d4b54b5f77f4e6de (diff)
Added devfs and basic standard devices
Diffstat (limited to 'run')
-rwxr-xr-xrun7
1 files changed, 7 insertions, 0 deletions
diff --git a/run b/run
index 8a28d35..10aa8e2 100755
--- a/run
+++ b/run
@@ -121,7 +121,14 @@ make_build() {
mkdir -p ./mnt/etc/
mkdir -p ./mnt/usr/
mkdir -p ./mnt/bin/
+
+ # TODO: Device file touching should be in kernel
mkdir -p ./mnt/dev/
+ touch ./mnt/dev/stdin
+ touch ./mnt/dev/stdout
+ touch ./mnt/dev/stderr
+ touch ./mnt/dev/fb
+
cp ./build/res/font.bin ./mnt/bin/font
cp ./build/user/* ./mnt/bin/
echo "Hello world, ext2!" | tee -a ./mnt/etc/test