Re: [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c

2011-10-24 Thread Wolfgang Denk
Dear Marek Vasut, In message <1319447521-6020-1-git-send-email-marek.va...@gmail.com> you wrote: > The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of U-Boot > if CONFIG_CMD_NET is enabled. > > arm: Use getenv_ulong() in place of getenv(), strtoul > > This changes the board c

Re: [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c

2011-10-24 Thread Marek Vasut
On Monday, October 24, 2011 11:25:32 AM Heiko Schocher wrote: > Hello Marek, > > Marek Vasut wrote: > > The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of > > U-Boot if CONFIG_CMD_NET is enabled. > > > > arm: Use getenv_ulong() in place of getenv(), strtoul > > > > This chan

Re: [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c

2011-10-24 Thread Heiko Schocher
Hello Marek, Marek Vasut wrote: > The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of U-Boot > if CONFIG_CMD_NET is enabled. > > arm: Use getenv_ulong() in place of getenv(), strtoul > > This changes the board code to use the new getenv_ulong() function. > > Signed-off-by: M

[U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c

2011-10-24 Thread Marek Vasut
The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of U-Boot if CONFIG_CMD_NET is enabled. arm: Use getenv_ulong() in place of getenv(), strtoul This changes the board code to use the new getenv_ulong() function. Signed-off-by: Marek Vasut Cc: Simon Glass Cc: Wolfgang Denk C

Re: [U-Boot] [PATCH] Fix compile issue

2009-04-02 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:59 Thu 02 Apr , Mike Frysinger wrote: > On Thursday 02 April 2009 12:21:54 Sanjeev Premi wrote: > > cpu/arm_cortexa8/omap3/board.c |2 +- > > you're fixing a specific board or board family, so please put that into the > subject line. "Fix compile issue" might be ok if it were an er

Re: [U-Boot] [PATCH] Fix compile issue

2009-04-02 Thread Premi, Sanjeev
> -Original Message- > From: Dirk Behme [mailto:dirk.be...@googlemail.com] > Sent: Thursday, April 02, 2009 11:48 PM > To: Premi, Sanjeev > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH] Fix compile issue > > Sanjeev Premi wrote: > > Fixes this

Re: [U-Boot] [PATCH] Fix compile issue

2009-04-02 Thread Dirk Behme
Sanjeev Premi wrote: > Fixes this compile error: > board.c: In function 'do_switch_ecc': > board.c:339: error: 'cmd_tbl_t' has no member named 'help' > make[1]: *** [board.o] Error 1 > make[1]: Leaving directory > `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3' > make: *** [cpu/arm_cort

Re: [U-Boot] [PATCH] Fix compile issue

2009-04-02 Thread Mike Frysinger
On Thursday 02 April 2009 12:21:54 Sanjeev Premi wrote: > cpu/arm_cortexa8/omap3/board.c |2 +- you're fixing a specific board or board family, so please put that into the subject line. "Fix compile issue" might be ok if it were an error in the top level build files, but this isnt ... -mike

[U-Boot] [PATCH] Fix compile issue

2009-04-02 Thread Sanjeev Premi
Fixes this compile error: board.c: In function 'do_switch_ecc': board.c:339: error: 'cmd_tbl_t' has no member named 'help' make[1]: *** [board.o] Error 1 make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3' make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2 Sig