summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2020-07-23 11:50:27 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-07-24 09:57:52 +0200
commitb65290de7455a93db53e0c0d233ee1bd2f7ec674 (patch)
treeae549c9d74b016e1a1bbe4541084e8484487a7fc
parentcefb1c446d27516e7e020d28821cce20ee0cc897 (diff)
downloadptxdist-b65290de7455a93db53e0c0d233ee1bd2f7ec674.tar.gz
ptxdist-b65290de7455a93db53e0c0d233ee1bd2f7ec674.tar.xz
busybox: bring back and reorder the stage separator comments
Even if the default compile stage is used, its variables deserve a recognisable header for better navigation. The BUSYBOX_INSTALL_OPT variable belongs to the install stage, so move the Install header. Signed-off-by: Roland Hieber <rhi@pengutronix.de> Message-Id: <20200723095027.3673-2-rhi@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/busybox.make12
1 files changed, 8 insertions, 4 deletions
diff --git a/rules/busybox.make b/rules/busybox.make
index 5c87c17ba..9870414d0 100644
--- a/rules/busybox.make
+++ b/rules/busybox.make
@@ -48,6 +48,10 @@ ifeq ($(BUSYBOX_ARCH),i386)
BUSYBOX_ARCH := x86
endif
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
# does not build reproducibly unless we set KCONFIG_NOTIMESTAMP
BUSYBOX_MAKE_OPT := \
KCONFIG_NOTIMESTAMP=1 \
@@ -65,15 +69,15 @@ BUSYBOX_MAKE_ENV := \
$(CROSS_ENV) \
SKIP_STRIP=y
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
BUSYBOX_INSTALL_OPT := \
$(BUSYBOX_MAKE_OPT) \
CONFIG_PREFIX=$(BUSYBOX_PKGDIR)/usr \
install
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
$(STATEDIR)/busybox.install:
@$(call targetinfo)
@$(call world/install, BUSYBOX)