I have a custom zynq board(MYC-C7Z010/20 CPU Module) and compile original u-boot+Linux 3.15.0 for it succesfully and it works fine. But I try to update my kernel with this git repository https://github.com/Xilinx/linux-xlnx. I add my board defconfig file to kernel/arch/arm/config path and build kernel succesfully without any error. All of my commands are like this
$ make ARCH=arm CROSS_COMPILE=arm-xilinx-linux-gnueabi- distclean
$ make ARCH=arm CROSS_COMPILE=arm-xilinx-linux-gnueabi- zynq_myd_defconfig
$ make ARCH=arm CROSS_COMPILE=arm-xilinx-linux-gnueabi- -j 4 LOADADDR=0x00008000 uImage
$ make ARCH=arm CROSS_COMPILE=arm-xilinx-linux-gnueabi- dtbs
but ofter that i will see only kernel starting .. i try to help google and find sevral issue about this.
- I enable Kernel low level debug from this tutorial http://embeddedbuzz.blogspot.com/2012/01/enabling-low-level-kernel-debugging-and.html?m=1
- I enable debuging port to xillinx UART0 in menuconfig
- I change bootargs like this console=ttyPS0,115200 root=/dev/ram rw earlyprintk:serial
but nothing changed with me. Only last message and without any other help.
I need your step by step help if help me.
Also it may be good if I can check u-boot and kernel MACHINE ID for sure problem is not from these.