1f08c3bdfSopenharmony_ci#!/bin/sh 2f08c3bdfSopenharmony_ci 3f08c3bdfSopenharmony_ciecho "Attempting to parse currently running kernel config" 4f08c3bdfSopenharmony_ci./test_kconfig 5f08c3bdfSopenharmony_ciecho 6f08c3bdfSopenharmony_ci 7f08c3bdfSopenharmony_cifor i in config0*; do 8f08c3bdfSopenharmony_ci head -n 1 "$i" 9f08c3bdfSopenharmony_ci KCONFIG_PATH="$i" ./test_kconfig 10f08c3bdfSopenharmony_ci echo 11f08c3bdfSopenharmony_cidone 12