From 18b38b0eb68cbcb8793efe989dcd8796a60288af Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 12 Jun 2009 20:20:47 +0200 Subject: kernel patch cleanup - move patches to kernel version specific directory - enable execute bit on md5sum wrapper - remove wrong include in BSDmakefile - enable ROOTFS for rb532 device - add mips specific patch for lib/delay.c typo --- scripts/md5sum | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 scripts/md5sum (limited to 'scripts/md5sum') diff --git a/scripts/md5sum b/scripts/md5sum old mode 100644 new mode 100755 -- cgit v1.2.3 From 32430d22108818f0dd88a4ada7f0f7c13b213101 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 13 Jun 2009 17:13:29 +0200 Subject: fix some minor issues --- scripts/md5sum | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/md5sum') diff --git a/scripts/md5sum b/scripts/md5sum index 6a95a4707..24e1e9fac 100755 --- a/scripts/md5sum +++ b/scripts/md5sum @@ -2,8 +2,8 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. -if [ -x /usr/bin/md5sum ];then - md5sum "$@" +if [ -x /usr/bin/md5sum ]; then + /usr/bin/md5sum "$@" else md5 "$@" | sed 's#MD5 (\([^)]*\)) = \(.*\)#\2 \1#' fi -- cgit v1.2.3