I created latest OpenElec SD card on FreeBSD.
1. create empty partition
maybe we could create partition with gpart. But this time I use below empty partition image (easy operation).
related link
http://wiki.openelec.tv/index.php?title=Installing_OpenELEC_on_Raspberry_Pi#tab=Mac_OSX
1.1 download empty image
http://openelec.thestateofme.com/empty.img.zip
1.2 write empty image
dd if=empty.img of=/dev/da0 bs=10240 conv=sync
1.3 check partition table
fdisk /dev/da0
2. write system file
this step from below Windows steps
http://wiki.openelec.tv/index.php?title=Installing_OpenELEC_on_Raspberry_Pi#tab=Windows
2.1 mount msdos partition
mount -t msdosfs /dev/da0s1 /mnt
2.2 write files
cp target/KERNEL /mnt/kernel.img
cp target/SYSTEM /mnt/
cp 3rdparty/bootloader/*.* /mnt
cp openelec.ico /mnt
cp README.md /mnt
2.3 create cmdline.txt
vi /mnt/cmdline.txt
write below line
boot=/dev/mmcblk0p1 disk=/dev/mmcblk0p2 quite
----------------------------------------------------------------------
I installed OpenELEC 3.2.4 is faster than 2.99.4 and I could play back
MPEG4 H.264 Full HD movie files without problem(noise).
Thank you, OpenELEC Team.