Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (C) 2010 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. *
  19. * You can also choose to distribute this program under the terms of
  20. * the Unmodified Binary Distribution Licence (as given in the file
  21. * COPYING.UBDL), provided that you have satisfied its requirements.
  22. */
  23. #include <string.h>
  24. #include <stdio.h>
  25. #include <errno.h>
  26. #include <getopt.h>
  27. #include <ipxe/command.h>
  28. #include <ipxe/parseopt.h>
  29. #include <ipxe/settings.h>
  30. #include <ipxe/settings_ui.h>
  31. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  32. /** @file
  33. *
  34. * Configuration UI commands
  35. *
  36. */
  37. /** "config" options */
  38. struct config_options {};
  39. /** "config" option list */
  40. static struct option_descriptor config_opts[] = {};
  41. /** "config" command descriptor */
  42. static struct command_descriptor config_cmd =
  43. COMMAND_DESC ( struct config_options, config_opts, 0, 1, "[<scope>]" );
  44. /**
  45. * "config" command
  46. *
  47. * @v argc Argument count
  48. * @v argv Argument list
  49. * @ret rc Return status code
  50. */
  51. static int config_exec ( int argc, char **argv ) {
  52. struct config_options opts;
  53. struct settings *settings;
  54. int rc;
  55. /* Parse options */
  56. if ( ( rc = parse_options ( argc, argv, &config_cmd, &opts ) ) != 0 )
  57. return rc;
  58. /* Parse settings option, if present */
  59. if ( ( rc = parse_settings ( ( ( optind < argc ) ? argv[optind] : "" ),
  60. &settings ) ) != 0 )
  61. return rc;
  62. /* Run settings UI */
  63. if ( ( rc = settings_ui ( settings ) ) != 0 ) {
  64. printf ( "Could not save settings: %s\n", strerror ( rc ) );
  65. return rc;
  66. }
  67. return 0;
  68. }
  69. /** Configuration UI commands */
  70. struct command config_command __command = {
  71. .name = "config",
  72. .exec = config_exec,
  73. };