summaryrefslogtreecommitdiffstats
path: root/scripts/libptxdist.sh
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2010-11-01 19:16:47 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2010-11-17 12:30:41 +0100
commit7330db86ea8037c56f9804f8a74174de6d7108da (patch)
treedc4a9dbc6c2a623afeb04c8e9d3b3d595b8facfd /scripts/libptxdist.sh
parent29e4c19f755534e39408e66033003b8ec539f4d1 (diff)
downloadptxdist-7330db86ea8037c56f9804f8a74174de6d7108da.tar.gz
ptxdist-7330db86ea8037c56f9804f8a74174de6d7108da.tar.xz
kconfig: update with kconfig from linux-2.6.37-rc2
The kconfig upstream now has a configurable conig symbol prefix and there are no more references to the kernel in the help texts. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/libptxdist.sh')
-rw-r--r--scripts/libptxdist.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/libptxdist.sh b/scripts/libptxdist.sh
index c68bd2905..421d1df31 100644
--- a/scripts/libptxdist.sh
+++ b/scripts/libptxdist.sh
@@ -281,23 +281,23 @@ ptxd_kconfig() {
#
ptxd_kconfig_migrate "${part}" &&
if tty -s; then
- "${conf}" -s "${file_kconfig}"
+ "${conf}" --silentoldconfig "${file_kconfig}"
else
- "${conf}" -o "${file_kconfig}"
+ "${conf}" --oldconfig "${file_kconfig}"
fi
;;
allmodconfig)
- "${conf}" -m "${file_kconfig}"
+ "${conf}" --allmodconfig "${file_kconfig}"
;;
allyesconfig)
- "${conf}" -y "${file_kconfig}"
+ "${conf}" --allyesconfig "${file_kconfig}"
;;
allnoconfig)
- "${conf}" -n "${file_kconfig}"
+ "${conf}" --allnoconfig "${file_kconfig}"
;;
dep)
copy_back="false"
- yes "" | "${conf}" -O "${file_kconfig}" &&
+ yes "" | "${conf}" --writedepend "${file_kconfig}" &&
cp -- ".config" "${PTXDIST_DGEN_DIR}/${part}config"
;;
*)