From c5a8d943b292113357f3dca8427bacc7014faf3c Mon Sep 17 00:00:00 2001 From: "Carl D. Roth" Date: Fri, 6 May 2016 11:08:06 -0700 Subject: [PATCH] Support dtb and itb extraction --- tools/onlplatform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/onlplatform.py b/tools/onlplatform.py index 4348cb85..633bc722 100644 --- a/tools/onlplatform.py +++ b/tools/onlplatform.py @@ -71,7 +71,7 @@ def extractVendor(platform, arch): l = [x for x in l if x.startswith('onl-vendor-config-')] return "\n".join(l) -if key in ('kernel', 'initrd',): +if key in ('kernel', 'initrd', 'dtb', 'itb',): print extractKey(platform, arch, key) sys.exit(0)