VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/CryptoPkg/Library/OpensslLib/perl2json.pl@ 101291

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#
5use strict;
6use warnings;
7use JSON;
8
9BEGIN {
10 my $openssldir = shift;
11 push @INC, $openssldir;
12}
13use configdata qw/%config %target %unified_info/;
14
15my %data;
16$data{'config'} = \%config;
17$data{'target'} = \%target;
18$data{'unified_info'} = \%unified_info;
19print encode_json(\%data)
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette