From 5e610067b89955ddfa5c5531b153d8dae6dcaadb Mon Sep 17 00:00:00 2001 From: Mike Lowis Date: Wed, 18 May 2016 16:31:42 -0400 Subject: [PATCH] Added task to build a stage 1 tarball from the build --- Makefile | 5 +++++ source/kernel/config | 1 + 2 files changed, 6 insertions(+) create mode 120000 source/kernel/config diff --git a/Makefile b/Makefile index 9470fba6..0bb34277 100644 --- a/Makefile +++ b/Makefile @@ -56,15 +56,20 @@ include source/smdev/Rules.mk include source/sdhcp/Rules.mk include source/iproute2/Rules.mk include source/curl/Rules.mk +include etc/Rules.mk .PHONY: all headers $(PHONY) all: $(PHONY) +stage1: all + cd $(BUILDDIR) && tar -cJf ../stage1.tar.xz . --exclude obj --exclude dummy + clean: @echo cleaning @$(RM) $(BUILDDIR)/dummy $(ECLEAN) @$(RM) -r $(BUILDDIR)/include + @$(RM) stage1.tar.xz # load dependency files if they exist -include $(DEPS) diff --git a/source/kernel/config b/source/kernel/config new file mode 120000 index 00000000..2ec2572c --- /dev/null +++ b/source/kernel/config @@ -0,0 +1 @@ +.config \ No newline at end of file -- 2.49.0