diff options
-rw-r--r-- | meta/classes/uboot-config.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/uboot-config.bbclass b/meta/classes/uboot-config.bbclass index 3e09f17bbe..8ac1b71bc2 100644 --- a/meta/classes/uboot-config.bbclass +++ b/meta/classes/uboot-config.bbclass @@ -14,6 +14,8 @@ python () { ubootmachine = d.getVar("UBOOT_MACHINE", True) ubootconfigflags = d.getVarFlags('UBOOT_CONFIG') + # The "doc" varflag is special, we don't want to see it here + ubootconfigflags.pop('doc', None) if not ubootmachine and not ubootconfigflags: PN = d.getVar("PN", True) |