I thought this process would be simple so perhaps I'm making a small mistake. It seems that I'm copying these files over to the SD card incorrectly because it's not booting on the MicroZed.
Here's my exact process I've gone through.
Step 1)
I plug my micro sd card into my computer. It comes up as sda.
Step 2)
I'm not sure what's on this card but it is brand new. Regardless I want to start fresh so I startup fdisk
<sudo fdisk /dev/sda
Step 3)
Using fdisk I remove the existing partition (there's only one) by using fdisk's option (d). then I create a new partition with option (n). Finally I enable the bootflag with option (a).
Step 4)
Now I format the partition as fat32
<sudo mkfs -t vfat -F 32 /dev/sda1>
Step 5)
Now I copy the BOOT.BIN and image.ub over to the sd card on this partition by using the dd command like so...
<sudo dd if=/home/scy86dev/petalinux_prjxs/mz7010_fmccc_2018_2/images/linux/BOOT.BIN of=/dev/sda1>
<sudo dd if=/home/scy86dev/petalinux_prjxs/mz7010_fmccc_2018_2/images/linux/image.ub of=/dev/sda1>
Step 6)
Finally i insert the sd card into the microzed. I power on the device and the red and green leds light up but the blue led doesn't. I started up minicom just to be sure and it's not showing anything either.
I am 100% sure the USB/UART driver is installed, minicom is setup correctly, and my jumpers are set correctly on the board. I know this because I can pop in another sd card that has WindRivers Linux on it and it boots just fine. By booting "just fine" I mean the blue led comes on and minicom shows the boot process with a login prompt.
EDIT:
I just currently tried using the <cp ...> command instead of the <dd ...> command. This didn't help any and the same result occurs being it's not booting and the red and green lights are on.
So what am i doing wrong?