Does anyone know what I have to do to boot into an initramfs on the AM1808 EVM? I have created a initrd.cpio.gz file and have successfully loaded the kernel and initramfs into memory from the uboot prompt using the following commands:
usb start
fatload usb 0:1 0xc0700000 uImage
fatload usb 0:1 0xc1180000 initrd.cpio.gz
bootm 0xc0700000 0xc1180000
After running the commands listed above, the kernel boots into the real root filesystem but does not enter the initramfs first. Can anyone help me boot into an initramfs on the AM1808 EVM? Thank you.