Hi all,<br>
I am having ARM Board On which i am trying to enable FAT file system awareness in U-boot.<br>
And in U-Boot Source code that module is already present.<br>
i am having LPC2294 Arm core in which i am having 256kb on chip flash memory and 16 kb on chip RAM.<br>
and apart from that i am having 4MB external flash memory and 2 MB external RAM.<br>
The U-boot is already ported to this board.<br>
flash support , memory commands support,are there currently but the hex size becomes 338 k.<br>
and when i enable the FAT filesystem support from my boards header file by defining the <br>
<br>
#define CONFIG_COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ( \<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(CONFIG_CMD_DFL &amp; ~CFG_CMD_NET &amp; ~CFG_CMD_IMI &amp;
~CFG_CMD_LOADS &amp; ~CFG_CMD_MISC \<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&amp; ~CFG_CMD_BDI &amp; ~CFG_CMD_BOOTD &amp; ~CFG_CMD_CONSOLE &amp;
~CFG_CMD_ENV &amp; ~CFG_CMD_IMLS \<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&amp; ~CFG_CMD_AUTOSCRIPT &amp; ~CFG_CMD_RUN &amp; ~CFG_CMD_ITEST &amp;
~CFG_CMD_FPGA \<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&amp; ~CFG_CMD_SETGETDCR)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
|&nbsp; ( CFG_CMD_FAT )&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>
but while compiling i am getting error<br>
<br>
make[1]: Leaving directory `/try/u-boot-1.1.4/common&#39;<br>
UNDEF_SYM=`arm-elf-objdump -x lib_generic/libgeneric.a
board/phytec/libphytec.a cpu/arm7t/libarm7t.a lib_arm/libarm.a
lib_arm/libLPC22xx.a fs/fat/libfat.a drivers/libdrivers.a
post/libpost.a post/cpu/libcpu.a common/libcommon.a |sed&nbsp; -n -e
&#39;s/.*\(__u_boot_cmd_.*\)/-u\1/p&#39;|sort|uniq`;\<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arm-elf-ld -Bstatic -T
/try/u-boot-1.1.4/board/phytec/u-boot.lds -Ttext 0x81040000&nbsp;
$UNDEF_SYM cpu/arm7t/start.o \<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
--start-group lib_generic/libgeneric.a board/phytec/libphytec.a
cpu/arm7t/libarm7t.a lib_arm/libarm.a lib_arm/libLPC22xx.a
fs/fat/libfat.a drivers/libdrivers.a post/libpost.a post/cpu/libcpu.a
common/libcommon.a --end-group -L
/usr/local/arm-uclinux-tool/lib/gcc/arm-uclinux/3.4.3/msoft-float -lgcc
\<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -Map u-boot.map -o u-boot<br>
/usr/local/arm-uclinux-tool/bin/arm-elf-ld.real: region ram is full (u-boot section .bss)<br>
<br>
so if anybody know&#39;s about this please guide me so that i can enable the fat support.<br>
<br>
Thanks and regards <br>
Harshal shete<br>
<br>
<br>
<br>
<br>
<br>
<br>
&nbsp;<br>