summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordzwdz2022-08-01 20:36:41 +0200
committerdzwdz2022-08-01 20:37:07 +0200
commit89e59c1c56ca37163ea1629c1c11e9bc48727746 (patch)
tree18c851a7478baa4cb418e63b3fd8dc4ac8c5c7c9 /Makefile
parent6a85c6ede66f723e1415552482e1c6640653efa2 (diff)
user: make ansiterm use the framebuffer instead of vga text mode
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4bbe24d..5b1bad2 100644
--- a/Makefile
+++ b/Makefile
@@ -101,8 +101,12 @@ out/initrd/%: initrd/%
@mkdir -p $(@D)
@cp $< $@
+out/initrd/font.psf: /usr/share/kbd/consolefonts/default8x16.psfu.gz
+ @gunzip $< -c > $@
+
out/initrd.tar: $(patsubst %,out/%,$(shell find initrd/ -type f)) \
- $(patsubst %,out/initrd/bin/%,$(USERBINS))
+ $(patsubst %,out/initrd/bin/%,$(USERBINS)) \
+ out/initrd/font.psf
@cd out/initrd; tar chf ../initrd.tar *