From d6fa04a437033d4bdfa1b0d90a4786bfe492f749 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Mon, 11 Mar 2019 05:32:29 +0100 Subject: IB: include SUPPORTED_DEVICES in 'make info' output Signed-off-by: Daniel Golle --- scripts/metadata.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/metadata.pm') diff --git a/scripts/metadata.pm b/scripts/metadata.pm index d9804f8dc3..a338b8caad 100644 --- a/scripts/metadata.pm +++ b/scripts/metadata.pm @@ -140,6 +140,7 @@ sub parse_target_metadata($) { id => $1, name => $1, has_image_metadata => 0, + supported_devices => [], priority => 999, packages => [] }; @@ -148,6 +149,7 @@ sub parse_target_metadata($) { }; /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1; /^Target-Profile-hasImageMetadata:\s*(\d+)\s*$/ and $profile->{has_image_metadata} = $1; + /^Target-Profile-SupportedDevices:\s*(.+)\s*$/ and $profile->{supported_devices} = [ split(/\s+/, $1) ]; /^Target-Profile-Priority:\s*(\d+)\s*$/ and do { $profile->{priority} = $1; $target->{sort} = 1; -- cgit v1.2.3