On 03/01/2012 06:09 AM, VIJAY KUMAR wrote: > > Hi , > > > > I am working on a IMX53 sabre board to build my own images host Ubuntu > 11.10 > > I used LTIB for the process > > In the first step > ltib -m config > every thing succeeded and I have choosen > > Freecsale reference board > min profile > > (imx51) platform > board mx53_smd > > and finally I run the ltib > ./ltib > > after some 835 seconds unable to succeed > failed building imx-lib > > > > help me to get out of this.. > > Vijay,
look in rpm/BUILD/imx-lib-11.05.01/ipu/mxc_ipu_hl_lib.c and figure out why ipu_init_channel_buffer is being called with too few arguments. To help, you can do the following: ./ltib -m shell cd rpm/BUILD/imx-lib-11.05.01/ipu gcc -DIMX51 -I/home/cmc/Ltibsetup/ltib/rootfs/usr/src/linux/include -I/home/cmc/Ltibsetup/ltib/rpm/BUILD/imx-lib-11.05.01/../linux/drivers/mxc/security/rng/include -I/home/cmc/Ltibsetup/ltib/rpm/BUILD/imx-lib-11.05.01/../linux/drivers/mxc/security/sahara2/include -Wall -O2 -fPIC -E -D mxc_ipu_hl_lib.c -o /tmp/mxc_ipu_hl_lib.e exit to generate the preprocessed output of mxc_ipu_hl_lib.c into /tmp/mxc_ipu_hl_lib.e, then look in it to find both the prototype and invocation of ipu_init_channel_buffer and figure out why they disagree on the number of arguments... Googling around I found: http://imxcommunity.org/forum/topics/i-mx53-qsb-1105-build that might help. Good luck! -- Peter Barada [email protected] _______________________________________________ LTIB home page: http://ltib.org Ltib mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/ltib
