summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/busybox.inc
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-01-31 16:30:25 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-02-02 16:57:21 +0000
commit6c09c9259f9ff8d6a0f9a5cfb1aef9b635f67aac (patch)
treeed9770cb59499c240b7db7d63bd7ce662fb8cf89 /meta/recipes-core/busybox/busybox.inc
parentb08607a2a9c28401141d9543a605c0298cd85a68 (diff)
downloadpoky-6c09c9259f9ff8d6a0f9a5cfb1aef9b635f67aac.tar.gz
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] (From OE-Core rev: 93c7fa3b369c8eb61b65cdd82111c8016d707fb6) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/busybox/busybox.inc')
-rw-r--r--meta/recipes-core/busybox/busybox.inc2
1 files changed, 1 insertions, 1 deletions
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 () {
356 cp -r ${B}/testsuite ${D}${PTEST_PATH}/ 356 cp -r ${B}/testsuite ${D}${PTEST_PATH}/
357 # These access the internet which is not guaranteed to work on machines running the tests 357 # These access the internet which is not guaranteed to work on machines running the tests
358 rm -rf ${D}${PTEST_PATH}/testsuite/wget 358 rm -rf ${D}${PTEST_PATH}/testsuite/wget
359 cp ${B}/.config ${D}${PTEST_PATH}/ 359 sort ${B}/.config > ${D}${PTEST_PATH}/.config
360 ln -s /bin/busybox ${D}${PTEST_PATH}/busybox 360 ln -s /bin/busybox ${D}${PTEST_PATH}/busybox
361} 361}
362 362