03-16-2018 02:37 AM
Hello,
I see that kernel is build as part of yocto petalinux.
But is there a way to download it and compile it standalone ?
Thanks,
ranran
03-16-2018 03:45 AM - edited 03-16-2018 03:47 AM
Hi @ransh,
Of course, you can build the Kernel with getting sources from Xilinx repo:
~$ git clone git://github.com/Xilinx/linux-xlnx.git
~$ cd linux-xlnx
~$ make ARCH=arm xilinx_zynq_defconfig
~$ make ARCH=arm UIMAGE_LOADADDR=0x8000 uImage
After you can do what you what with uImage :)
EDIT: After call make ARCH=arm xilinx_zynq_defconfig you can run make menuconfig in order to set/unset kernel part/driver :P
Cheers,
Trigger
03-16-2018 03:45 AM - edited 03-16-2018 03:47 AM
Hi @ransh,
Of course, you can build the Kernel with getting sources from Xilinx repo:
~$ git clone git://github.com/Xilinx/linux-xlnx.git
~$ cd linux-xlnx
~$ make ARCH=arm xilinx_zynq_defconfig
~$ make ARCH=arm UIMAGE_LOADADDR=0x8000 uImage
After you can do what you what with uImage :)
EDIT: After call make ARCH=arm xilinx_zynq_defconfig you can run make menuconfig in order to set/unset kernel part/driver :P
Cheers,
Trigger