option "reserved2" - "String for second reserved section." string optional
option "kernel-file-has-header" - "Indicates that the kernel file includes the kernel header with correct load address and entry point, so no changes are needed" flag off
option "pad" p "Pad the image to this size if smaller (in MiB)" int typestr="size (in MiB)" optional
" --reserved2=STRING String for second reserved section.",
" --kernel-file-has-header Indicates that the kernel file includes the \n kernel header with correct load address and \n entry point, so no changes are needed \n (default=off)",
" -p, --pad=size (in MiB) Pad the image to this size if smaller (in MiB)",
constchar*reserved2_help;/**< @brief String for second reserved section. help description. */
intkernel_file_has_header_flag;/**< @brief Indicates that the kernel file includes the kernel header with correct load address and entry point, so no changes are needed (default=off). */
constchar*kernel_file_has_header_help;/**< @brief Indicates that the kernel file includes the kernel header with correct load address and entry point, so no changes are needed help description. */
intpad_arg;/**< @brief Pad the image to this size if smaller (in MiB). */
char*pad_orig;/**< @brief Pad the image to this size if smaller (in MiB) original value given at command line. */
constchar*pad_help;/**< @brief Pad the image to this size if smaller (in MiB) help description. */
unsignedinthelp_given;/**< @brief Whether help was given. */
unsignedintversion_given;/**< @brief Whether version was given. */
@ -136,6 +139,7 @@ struct gengetopt_args_info
unsignedintinactive_given;/**< @brief Whether inactive was given. */
unsignedintreserved2_given;/**< @brief Whether reserved2 was given. */
unsignedintkernel_file_has_header_given;/**< @brief Whether kernel-file-has-header was given. */
unsignedintpad_given;/**< @brief Whether pad was given. */