about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-06 15:23:09 -0500
committerJune McEnroe <june@causal.agency>2019-01-06 15:23:09 -0500
commit239a01cbb4d22a438d7dda05671eb77acb04e042 (patch)
tree16c65b6942f7a360d94539768292f8a88fd2d2a1
parentAdd kcgi support to image (diff)
downloadtorus-239a01cbb4d22a438d7dda05671eb77acb04e042.tar.gz
torus-239a01cbb4d22a438d7dda05671eb77acb04e042.zip
Add image and font to chroot
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 684a04d..8059b83 100644
--- a/Makefile
+++ b/Makefile
@@ -24,19 +24,21 @@ image.o: png.h
 tags: *.h *.c
 	ctags -w *.h *.c
 
-chroot.tar: client server
+chroot.tar: client image server
 	install -d -o root -g wheel \
 		root \
 		root/bin \
 		root/home \
 		root/usr/share/misc \
+		root/usr/share/torus \
 		root/var/run
 	install -d -o $(CHROOT_USER) -g $(CHROOT_GROUP) root/home/$(CHROOT_USER)
 	install -d -o $(CHROOT_USER) -g $(CHROOT_GROUP) root/var/run/torus
 	cp -af /usr/share/locale root/usr/share
 	cp -fp /usr/share/misc/termcap.db root/usr/share/misc
 	cp -fp /rescue/sh root/bin
-	install client server root/bin
+	install client image server root/bin
+	install -m 644 default8x16.psfu root/usr/share/torus
 	tar -cf chroot.tar -C root bin home usr var
 
 install: chroot.tar rc.torus