I'm using Zeus.  I'm trying to create and mount a data partition using wic.  My wks file is part u-boot --source rawcopy --sourceparams="file=u-boot.imx" --ondisk mmc --no-table --align 1 part /boot --source bootimg-partition --ondisk mmc --fstype=vfat --label bootA --active --align 4096 --size 20 part / --source rootfs --ondisk mmc --fstype=ext4 --label rootfsA --align 4096 --size 4096 part /boot --source bootimg-partition --ondisk mmc --fstype=vfat --label bootB --size 20 part / --source rootfs --ondisk mmc --fstype=ext4 --label rootfsB --align 4096 --size 4096 part /data --ondisk mmc --fstype=ext4 --fsoptions="defaults" --label data --align 4096 --size 2048 part --ondisk mmc --fstype=ext4 --label recovery --align 4096 --size 1024 This creates the data on partition 6 but does not mount create the /data directory nor mount the partition. If I manually create /data and manually modify the /etc/fstab file everything works. Any suggestions for fixing the wks file? Thanks Gary