From: Alexander Kanavin Date: Fri, 31 Jan 2020 15:30:25 +0000 (+0100) Subject: busybox: sort the .config file used by ptests X-Git-Tag: uninative-2.8~355 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=93c7fa3b369c8eb61b65cdd82111c8016d707fb6;p=openembedded-core.git busybox: sort the .config file used by ptests It was found to have slight variations in order of options depending on the host. Sorting it helps reproducibility. [YOCTO #13756] Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 391e4fd163..1a82f23b0f 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc @@ -356,7 +356,7 @@ do_install_ptest () { cp -r ${B}/testsuite ${D}${PTEST_PATH}/ # These access the internet which is not guaranteed to work on machines running the tests rm -rf ${D}${PTEST_PATH}/testsuite/wget - cp ${B}/.config ${D}${PTEST_PATH}/ + sort ${B}/.config > ${D}${PTEST_PATH}/.config ln -s /bin/busybox ${D}${PTEST_PATH}/busybox }