svn commit: r265163 - head/sys/tools/fdt

Warner Losh imp at FreeBSD.org
Wed Apr 30 20:52:38 UTC 2014


Author: imp
Date: Wed Apr 30 20:52:38 2014
New Revision: 265163
URL: http://svnweb.freebsd.org/changeset/base/265163

Log:
  Fix logic error. <blush>
  
  Submitted by: ian@

Modified:
  head/sys/tools/fdt/make_dtb.sh   (contents, props changed)

Modified: head/sys/tools/fdt/make_dtb.sh
==============================================================================
--- head/sys/tools/fdt/make_dtb.sh	Wed Apr 30 20:47:40 2014	(r265162)
+++ head/sys/tools/fdt/make_dtb.sh	Wed Apr 30 20:52:38 2014	(r265163)
@@ -7,7 +7,7 @@ S=$1
 dts="$2"
 dtb_path=$3
 
-if [ -n "$dts" ]; then
+if [ -z "$dts" ]; then
     echo "No DTS specified"
     exit 1
 fi


More information about the svn-src-all mailing list