[coreboot-gerrit] Patch set updated for coreboot: cbfstool: allow printable characters in image name

Andrey Petrov (andrey.petrov@intel.com) gerrit at coreboot.org
Wed Oct 7 21:51:03 CET 2015


Andrey Petrov (andrey.petrov at intel.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11807

-gerrit

commit a1fcf4a02ec3d8411955013056aa3fb34f0abc7e
Author: Andrey Petrov <andrey.petrov at intel.com>
Date:   Wed Oct 7 13:37:49 2015 -0700

    cbfstool: allow printable characters in image name
    
    Currently cbfstool would reject non-alpanumeric characters in
    image names. Underscore is not alphanumeric and is used in some
    default fmaps. This change allows image names to contain all
    "printable" characters.
    
    Change-Id: I6ba2b581d5623f5b028149ece0169892ea63fd04
    Signed-off-by: Andrey Petrov <andrey.petrov at intel.com>
---
 util/cbfstool/flashmap/fmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/cbfstool/flashmap/fmap.c b/util/cbfstool/flashmap/fmap.c
index f803d6c..ad13080 100644
--- a/util/cbfstool/flashmap/fmap.c
+++ b/util/cbfstool/flashmap/fmap.c
@@ -89,7 +89,7 @@ static int is_valid_fmap(const struct fmap *fmap)
 	while (i < FMAP_STRLEN) {
 		if (fmap->name[i] == 0)
 			break;
-		if (!isalnum(fmap->name[i]))
+		if (!isprint(fmap->name[i]))
 			return 0;
 		if (i == FMAP_STRLEN - 1) {
 			/* name is specified to be null terminated. We didn't



More information about the coreboot-gerrit mailing list