Hi,
I tried to build Linux kernel provied package. Package is AM35x-OMAP35x-PSP-SDK-03.00.00.05 and i tryied to build the kernel against my beagle board revision c5 using the following commands
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- distclean
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- omap3_beagle_defconfig
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- EXTRA_CFLAGS=-mno-unaligned-access uImage
With this i got the following error.
arch/arm/mach-omap2/sleep34xx.S: Assembler messages:
arch/arm/mach-omap2/sleep34xx.S:73: Warning: swp{b} use is deprecated for this architecture
CC arch/arm/mach-omap2/cm.o
CC arch/arm/mach-omap2/clock34xx.o
CC arch/arm/mach-omap2/clock34xx_data.o
CC arch/arm/mach-omap2/i2c.o
CC arch/arm/mach-omap2/board-omap3beagle.o
arch/arm/mach-omap2/board-omap3beagle.c: In function 'omap3_beagle_init_irq':
arch/arm/mach-omap2/board-omap3beagle.c:365:36: error: 'omap3_mpu_rate_table' undeclared (first use in this function)
arch/arm/mach-omap2/board-omap3beagle.c:365:36: note: each undeclared identifier is reported only once for each function it appears in
arch/arm/mach-omap2/board-omap3beagle.c:366:9: error: 'omap3_dsp_rate_table' undeclared (first use in this function)
arch/arm/mach-omap2/board-omap3beagle.c:366:31: error: 'omap3_l3_rate_table' undeclared (first use in this function)
make[1]: *** [arch/arm/mach-omap2/board-omap3beagle.o] Error 1
make: *** [arch/arm/mach-omap2] Error 2
Please help in resolving the issue.