Skip to content

Commit

Permalink
[cmdline] Add margin options to the "console" command
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Jan 22, 2014
1 parent 43c8c27 commit 20a90a4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/hci/commands/console_cmd.c
Expand Up @@ -51,6 +51,14 @@ static struct option_descriptor console_opts[] = {
struct console_options, config.width, parse_integer ),
OPTION_DESC ( "y", 'y', required_argument,
struct console_options, config.height, parse_integer ),
OPTION_DESC ( "left", 'l', required_argument,
struct console_options, config.left, parse_integer ),
OPTION_DESC ( "right", 'r', required_argument,
struct console_options, config.right, parse_integer ),
OPTION_DESC ( "top", 't', required_argument,
struct console_options, config.top, parse_integer ),
OPTION_DESC ( "bottom", 'b', required_argument,
struct console_options, config.bottom, parse_integer ),
OPTION_DESC ( "depth", 'd', required_argument,
struct console_options, config.depth, parse_integer ),
OPTION_DESC ( "picture", 'p', required_argument,
Expand Down

0 comments on commit 20a90a4

Please sign in to comment.