From 9727902ce5f80a76ee52b0ad586b1caf7af338d4 Mon Sep 17 00:00:00 2001 From: "Christian I. Nilsson" Date: Tue, 17 Feb 2026 16:58:28 +0000 Subject: [PATCH 1/2] [boot] Include size and modification dates of files in HTML output Signed-off-by: Christian I. Nilsson Modified-by: Michael Brown Signed-off-by: Michael Brown --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 813e908..ee66c9d 100644 --- a/Makefile +++ b/Makefile @@ -114,18 +114,18 @@ output/errors : $(patsubst %,$(SRCDIR)/%,$(ERROR_FILES)) sort -u $^ -o $@ $(OUTPUTS_STATIC) : output/% : static/% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(OUTPUTS_BIN) : output/% : $(SRCDIR)/bin/% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(OUTPUTS_BIN_COMBI) : output/% : $(SRCDIR)/bin-combi/% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(OUTPUTS_BIN_OTHER) : output/% : $(SRCDIR)/bin-% - ln -sf $(realpath $<) $@ + cp -p $< $@ $(INDEX_DYNAMIC) : output/% : $(ALL_OUTPUTS) ( cd $(dir $@) ; \ - tree -H "." -C -T "iPXE files" --filesfirst \ + tree -H "." -C -T "iPXE files" -s -D --filesfirst \ -I index.html -o index.html ) From 52e395748aa2a7e60e97a5428dc9c9605a09f029 Mon Sep 17 00:00:00 2001 From: "Christian I. Nilsson" Date: Thu, 12 Feb 2026 10:28:02 +0100 Subject: [PATCH 2/2] [boot] Add Meta header in HTML for improved experience on mobile devices Signed-off-by: Christian I. Nilsson --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee66c9d..def9156 100644 --- a/Makefile +++ b/Makefile @@ -128,4 +128,5 @@ $(OUTPUTS_BIN_OTHER) : output/% : $(SRCDIR)/bin-% $(INDEX_DYNAMIC) : output/% : $(ALL_OUTPUTS) ( cd $(dir $@) ; \ tree -H "." -C -T "iPXE files" -s -D --filesfirst \ - -I index.html -o index.html ) + -I index.html -o index.html ; \ + sed -i 's//\n /' index.html )