1 /* ----------------------------------------------------------------------- *
3 * Copyright 2009 Pierre-Alexandre Meyer - All Rights Reserved
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without
8 * restriction, including without limitation the rights to use,
9 * copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom
11 * the Software is furnished to do so, subject to the following
14 * The above copyright notice and this permission notice shall
15 * be included in all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
26 * -----------------------------------------------------------------------
33 #include "hdt-common.h"
35 void main_show_vpd(int argc __unused
, char **argv __unused
,
36 struct s_hardware
*hardware
)
41 if (!hardware
->is_vpd_valid
) {
42 more_printf("No VPD structure detected.\n");
46 more_printf("VPD present at address : %s\n", hardware
->vpd
.base_address
);
47 if (strlen(hardware
->vpd
.bios_build_id
) > 0)
48 more_printf("Bios Build ID : %s\n",
49 hardware
->vpd
.bios_build_id
);
50 if (strlen(hardware
->vpd
.bios_release_date
) > 0)
51 more_printf("Bios Release Date : %s\n",
52 hardware
->vpd
.bios_release_date
);
53 if (strlen(hardware
->vpd
.bios_version
) > 0)
54 more_printf("Bios Version : %s\n",
55 hardware
->vpd
.bios_version
);
56 if (strlen(hardware
->vpd
.default_flash_filename
) > 0)
57 more_printf("Default Flash Filename : %s\n",
58 hardware
->vpd
.default_flash_filename
);
59 if (strlen(hardware
->vpd
.box_serial_number
) > 0)
60 more_printf("Box Serial Number : %s\n",
61 hardware
->vpd
.box_serial_number
);
62 if (strlen(hardware
->vpd
.motherboard_serial_number
) > 0)
63 more_printf("Motherboard Serial Number : %s\n",
64 hardware
->vpd
.motherboard_serial_number
);
65 if (strlen(hardware
->vpd
.machine_type_model
) > 0)
66 more_printf("Machine Type/Model : %s\n",
67 hardware
->vpd
.machine_type_model
);
70 struct cli_module_descr vpd_show_modules
= {
72 .default_callback
= main_show_vpd
,
75 struct cli_mode_descr vpd_mode
= {
78 .default_modules
= NULL
,
79 .show_modules
= &vpd_show_modules
,