From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrice Vilchez Date: Fri, 06 Jul 2007 16:33:12 +0200 Subject: [U-Boot-Users] EABI problem In-Reply-To: <468E503A.7010909@balister.org> References: <000a01c7bfd1$af8c5c30$821ba8c0@Emea.Arm.com> <468E4797.5030604@rfo.atmel.com> <468E4B70.8030907@balister.org> <468E4E8B.2000107@rfo.atmel.com> <468E503A.7010909@balister.org> Message-ID: <468E52A8.2040604@rfo.atmel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Philip Balister a ?crit : > Patrice Vilchez wrote: >>> Philip >> Are you compiling a file with a 64 bits division ? >> I my case it was driver/nand/nand_utils.c enabled by adding >> "CFG_CMD_NAND" to CONFIG_COMMANDS. > > Yes, I have CFM_CMD_NAND set. I can build u-boot for the omap5912osk > with the same compiler fine. > > Philip But have you set CFG_NAND_LEGACY flag ? It disables the nand_utils.c compilation and then avoid 64 bits division. from driver/nand/nand_utils.c #if (CONFIG_COMMANDS & CFG_CMD_NAND) && !defined(CFG_NAND_LEGACY) I do not see any CFG_CMD_NAND into include/configs/omap5912osk.h file. Patrice.