diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-02-24 22:47:10 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-02-25 20:58:45 -0800 |
commit | 502f3945957eda4f312704fa70a0e2fc53bbd6af (patch) | |
tree | d7a30bc476d4889dbf039944e52cbca0f053e93f /com32/hdt/hdt-cli.h | |
parent | dddc947144848663029d46efaa81d8235c948f3f (diff) | |
download | syslinux-elf-502f3945957eda4f312704fa70a0e2fc53bbd6af.tar.gz syslinux-elf-502f3945957eda4f312704fa70a0e2fc53bbd6af.tar.xz syslinux-elf-502f3945957eda4f312704fa70a0e2fc53bbd6af.zip |
hdt: Basic pxe implementation
Diffstat (limited to 'com32/hdt/hdt-cli.h')
-rw-r--r-- | com32/hdt/hdt-cli.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/com32/hdt/hdt-cli.h b/com32/hdt/hdt-cli.h index 9b1bed13..5e1cbe7d 100644 --- a/com32/hdt/hdt-cli.h +++ b/com32/hdt/hdt-cli.h @@ -37,6 +37,7 @@ #define CLI_SHOW "show" #define CLI_HDT "hdt" #define CLI_PCI "pci" +#define CLI_NET "net" #define CLI_COMMANDS "commands" #define CLI_DMI "dmi" #define CLI_CPU "cpu" @@ -48,6 +49,7 @@ typedef enum { PCI_MODE, DMI_MODE, CPU_MODE, + NET_MODE, } cli_mode_t; struct s_cli_mode { @@ -94,4 +96,7 @@ void cli_detect_pci(struct s_hardware *hardware); void main_show_cpu(struct s_hardware *hardware,struct s_cli_mode *cli_mode); void handle_cpu_commands(char *cli_line, struct s_cli_mode *cli_mode, struct s_hardware *hardware); void cpu_show(char *item, struct s_hardware *hardware); + +//NET STUFF +void main_show_net(struct s_hardware *hardware,struct s_cli_mode *cli_mode); #endif |