diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-02-12 21:36:55 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-02-25 20:58:40 -0800 |
commit | 00d17177d4dc567bb31edc15a7b561f3a91c9de1 (patch) | |
tree | b0c266cbe20e117ca0f809666a9ebccb37db86e4 /sample | |
parent | 04d969ce4d548d3ae4fb2dbce68caa3923153bf8 (diff) | |
download | syslinux-00d17177d4dc567bb31edc15a7b561f3a91c9de1.tar.gz |
hdt: Removing useless stuff Adding bench on memory
Diffstat (limited to 'sample')
-rw-r--r-- | sample/hdt.c | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/sample/hdt.c b/sample/hdt.c index 45b61e98..1e87d501 100644 --- a/sample/hdt.c +++ b/sample/hdt.c @@ -267,7 +267,7 @@ void keys_handler(t_menusystem *ms, t_menuitem *mi,unsigned int scancode) static int get_disk_params(int disk, struct diskinfo *disk_info) { static com32sys_t getparm, parm, getebios, ebios, inreg,outreg; - char buffer[255]; + //char buffer[255]; struct device_parameter dp; // struct ata_identify_device aid; @@ -446,7 +446,6 @@ void compute_battery(unsigned char *menu, s_dmi *dmi) { void compute_disk_module(unsigned char *menu, struct diskinfo *disk_info, int disk_number) { - int i=disk_number; char buffer[MENULEN]; struct diskinfo d = disk_info[disk_number]; if (strlen(d.aid.model)<=0) return; @@ -791,6 +790,7 @@ for (int i=0;i<dmi->memory_count;i++) { sprintf(buffer," Module <%d> ",i); add_item(buffer,"Memory Module",OPT_SUBMENU,NULL,MEMORY_SUBMENU[i]); } +add_item("Run Test","Run Test",OPT_RUN,"memtest",0); } void compute_disks(unsigned char *menu, struct diskinfo *disk_info) { @@ -861,8 +861,22 @@ int main(void) compute_main_menu(); #ifdef WITH_MENU_DISPLAY + t_menuitem * curr; + char cmd[160]; + printf("Starting Menu\n"); - showmenus(MAIN_MENU); + curr=showmenus(MAIN_MENU); + if (curr) { + if (curr->action == OPT_RUN) + { + strcpy(cmd,curr->data); + + if (issyslinux()) + runsyslinuxcmd(cmd); + else csprint(cmd,0x07); + return 1; // Should not happen when run from SYSLINUX + } + } #endif return 0; |