I have found that board with rev.1.0 is working only with SDK <= 1.8 version.
I found u-boot for 1.8 and clone it to the sd card with command:
sudo dd if=u-boot.bin of=/dev/sdX bs=512 seek=8 && sync
Then I found uImage.bin and uImage.dtb files and add them to my OpenWRT rootfs to the boot dir.
Then I made two partition:
1. 100mb FAT32
2. all remaing space ETXFS2 (can't start with 1.8 u-boot and extfs3 or extfs4)
After I boot and config u-boot:
=>setenv bootfile uImage.bin
=>setenv fdtfile uImage.dtb
=>setenv consoledev ttyS0
=>setenv fdtaddr 8f000000
=>setenv loadaddr 82000000
=>setenv bootcmd 'setenv bootargs root=/dev/mmcblk0p2 rw rootdelay=5 console=$consoledev,$baudrate;mmcinfo;ext2load mmc 0:2 $loadaddr /boot/$bootfile;ext2load mmc 0:2 $fdtaddr /boot/$fdtfile;bootm $loadaddr - $fdtaddr'
=>saveenv