Module Name: src
Committed By: christos
Date: Sun Feb 10 03:09:08 UTC 2013
Modified Files:
src/distrib/utils/embedded: mkimage
Log Message:
really calling disklabel with the arguments of fdisk does not work.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/distrib/utils/embedded/mkimage
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/utils/embedded/mkimage
diff -u src/distrib/utils/embedded/mkimage:1.23 src/distrib/utils/embedded/mkimage:1.24
--- src/distrib/utils/embedded/mkimage:1.23 Sat Feb 9 21:09:47 2013
+++ src/distrib/utils/embedded/mkimage Sat Feb 9 22:09:07 2013
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: mkimage,v 1.23 2013/02/10 02:09:47 christos Exp $
+# $NetBSD: mkimage,v 1.24 2013/02/10 03:09:07 christos Exp $
#
# Copyright (c) 2013 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -36,7 +36,7 @@ DIR="$(cd "$(dirname "$0")" && pwd)"
PROG="$(basename "$0")"
DISKLABEL=${TOOL_DISKLABEL:-disklabel}
-FDISK=${TOOL_DISKLABEL:-fdisk}
+FDISK=${TOOL_FDISK:-fdisk}
MAKEFS=${TOOL_MAKEFS:-makefs}
src="/usr/src"