[Buildroot] [PATCH] get_linux_config.sh: sets THIS_MINOR to 0 if not valid.

julien.boibessot at free.fr julien.boibessot at free.fr
Tue Feb 9 16:11:04 UTC 2010


From: Julien Boibessot <julien.boibessot at armadeus.com>

Sets THIS_MINOR to 0 if not valid, ie when processing a Linux config file who do not
have a minor number extension; ex: "<name>-linux-2.6.<major>.config"
Otherwise bash is raising an error/exception (line 59) and script can not complete.

Signed-off-by: Julien Boibessot <julien.boibessot at armadeus.com>
---
 scripts/get_linux_config.sh |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/scripts/get_linux_config.sh b/scripts/get_linux_config.sh
index 1950e9d..5cd0e37 100755
--- a/scripts/get_linux_config.sh
+++ b/scripts/get_linux_config.sh
@@ -35,6 +35,7 @@ function linux_version()
 	KERNEL=`echo ${KCONFIG} | sed s/.*linux-2.6./linux-2.6./g -`
 	THIS_MAJOR=${KERNEL:10:2}
 	THIS_MINOR=${KERNEL:13}
+	THIS_MINOR=${THIS_MINOR:=0}
 }
 
 # Try to be careful...
-- 
1.6.0.4



More information about the buildroot mailing list