From: Felix Fietkau Date: Thu, 28 Jan 2016 22:42:29 +0000 (+0000) Subject: include/kernel: sort module lists for reproducibility X-Git-Tag: reboot~594 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=fefe200a00995320e1e04e1c3325eece71b47b92 include/kernel: sort module lists for reproducibility This is to get reproducible builds of, eg, the kmod-sched ipkg. Locale preferences can change build order, but the locale is already been defined for the entire build process, so it doesn't need to be specified here. Signed-off-by: bryan newbold SVN-Revision: 48540 --- diff --git a/include/kernel.mk b/include/kernel.mk index bb3c97228c..432e8ce123 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -90,7 +90,7 @@ define ModuleAutoLoad mods="$$$$$$$$1"; \ boot="$$$$$$$$2"; \ shift 2; \ - for mod in $$$$$$$$mods; do \ + for mod in $(sort $$$$$$$$mods); do \ mkdir -p $(2)/etc/modules.d; \ echo "$$$$$$$$mod" >> $(2)/etc/modules.d/$(1); \ done; \ @@ -107,7 +107,7 @@ define ModuleAutoLoad mods="$$$$$$$$2"; \ boot="$$$$$$$$3"; \ shift 3; \ - for mod in $$$$$$$$mods; do \ + for mod in $(sort $$$$$$$$mods); do \ mkdir -p $(2)/etc/modules.d; \ echo "$$$$$$$$mod" >> $(2)/etc/modules.d/$$$$$$$$priority-$(1); \ done; \