From 01ec28d91df1c756fba296d1081744b596b75a9a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 26 Aug 2010 22:31:06 +0200 Subject: [PATCH] config/path: add tolower function Signed-off-by: Stephan Raue --- config/path | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/path b/config/path index 1002207575..530ff421f6 100644 --- a/config/path +++ b/config/path @@ -288,6 +288,10 @@ kernel_path() { ls -d $ROOT/$BUILD/linux-[0-9]* } +tolower(){ + echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz +} + require_eglibc() { if [ "$TARGET_LIBC" != eglibc ]; then echo "$1 requires eglibc, aborting."