Last change
on this file since 101291 was 101291, checked in by vboxsync, 14 months ago |
EFI/FirmwareNew: Make edk2-stable202308 build on all supported platforms (using gcc at least, msvc not tested yet), bugref:4643
|
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
348 bytes
|
Line | |
---|
1 | #!/usr/bin/perl
|
---|
2 | #
|
---|
3 | # write out configdata.pm as json
|
---|
4 | #
|
---|
5 | use strict;
|
---|
6 | use warnings;
|
---|
7 | use JSON;
|
---|
8 |
|
---|
9 | BEGIN {
|
---|
10 | my $openssldir = shift;
|
---|
11 | push @INC, $openssldir;
|
---|
12 | }
|
---|
13 | use configdata qw/%config %target %unified_info/;
|
---|
14 |
|
---|
15 | my %data;
|
---|
16 | $data{'config'} = \%config;
|
---|
17 | $data{'target'} = \%target;
|
---|
18 | $data{'unified_info'} = \%unified_info;
|
---|
19 | print encode_json(\%data)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.