Skip to content

Commit

Permalink
Add make_defconfig script
Browse files Browse the repository at this point in the history
tools for save defconfig
$ ./make_defconfig.sh mako-perf_defconfig
it will update in arch/arm/configs

Change-Id: Ic4946b4ac020faf7026bde216b480994ff9a71a8
  • Loading branch information
dojipkim authored and Iliyan Malchev committed Feb 28, 2013
1 parent 06ce948 commit 03a9acb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions make_defconfig.sh
@@ -0,0 +1,27 @@
#!/bin/bash

DEFCONFIG_FILE=$1

if [ -z "$DEFCONFIG_FILE" ]; then
echo "Need defconfig file(j1v-perf_defconfig)!"
exit -1
fi

if [ ! -e arch/arm/configs/$DEFCONFIG_FILE ]; then
echo "No such file : arch/arm/configs/$DEFCONFIG_FILE"
exit -1
fi

# make .config
env KCONFIG_NOTIMESTAMP=true \
make ARCH=arm CROSS_COMPILE=arm-eabi- ${DEFCONFIG_FILE}

# run menuconfig
env KCONFIG_NOTIMESTAMP=true \
make menuconfig ARCH=arm

make savedefconfig ARCH=arm
# copy .config to defconfig
mv defconfig arch/arm/configs/${DEFCONFIG_FILE}
# clean kernel object
make mrproper

0 comments on commit 03a9acb

Please sign in to comment.