Re: [U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:54 Tue 16 Jun , Detlev Zundel wrote: > Hi Jean-Christophe, > > >> > +#if defined(CONFIG_CMD_MENU_MANAGEMENT) > >> > +if (!strncmp(argv[0], "a", 1)) > >> > +return do_menu_add(cmdtp, flag, argc, argv); > >> > +if (!strncmp(argv[0], "e", 1)) > >> > +

Re: [U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-16 Thread Detlev Zundel
Hi Jean-Christophe, >> > +#if defined(CONFIG_CMD_MENU_MANAGEMENT) >> > + if (!strncmp(argv[0], "a", 1)) >> > + return do_menu_add(cmdtp, flag, argc, argv); >> > + if (!strncmp(argv[0], "e", 1)) >> > + return do_menu_entry(cmdtp, flag, argc, argv); >> > +#endif >> > + if (!strn

Re: [U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-15 Thread Jean-Christophe PLAGNIOL-VILLARD
> > +#if defined(CONFIG_CMD_MENU_MANAGEMENT) > > + if (!strncmp(argv[0], "a", 1)) > > + return do_menu_add(cmdtp, flag, argc, argv); > > + if (!strncmp(argv[0], "e", 1)) > > + return do_menu_entry(cmdtp, flag, argc, argv); > > +#endif > > + if (!strncmp(argv[0], "l", 1)) >

Re: [U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-15 Thread Jean-Christophe PLAGNIOL-VILLARD
On 02:04 Mon 15 Jun , Mike Frysinger wrote: > On Saturday 13 June 2009 15:13:01 Jean-Christophe PLAGNIOL-VILLARD wrote: > > Introduce a menu framework that allow us to create list menu to simplify > > u-boot and make it more convivial for the end-user. > > > > This kind of menu is very usefull

Re: [U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-14 Thread Mike Frysinger
On Saturday 13 June 2009 15:13:01 Jean-Christophe PLAGNIOL-VILLARD wrote: > Introduce a menu framework that allow us to create list menu to simplify > u-boot and make it more convivial for the end-user. > > This kind of menu is very usefull when you do not have a keyboard or a > serial console atta

Re: [U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1244920382-21434-1-git-send-email-plagn...@jcrosoft.com> you wrote: > Introduce a menu framework that allow us to create list menu to simplify > u-boot and make it more convivial for the end-user. > > This kind of menu is very usefull when you do

[U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Introduce a menu framework that allow us to create list menu to simplify u-boot and make it more convivial for the end-user. This kind of menu is very usefull when you do not have a keyboard or a serial console attached to your board to allow you to interract with u-boot For the develloper part,