diff options
author | dzwdz | 2022-08-01 20:36:41 +0200 |
---|---|---|
committer | dzwdz | 2022-08-01 20:37:07 +0200 |
commit | 89e59c1c56ca37163ea1629c1c11e9bc48727746 (patch) | |
tree | 18c851a7478baa4cb418e63b3fd8dc4ac8c5c7c9 /Makefile | |
parent | 6a85c6ede66f723e1415552482e1c6640653efa2 (diff) |
user: make ansiterm use the framebuffer instead of vga text mode
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 * |