Thank you @Burngate
So far I was able to figure out how to boot raspberry without screen.
Info for next users who get here looking answer:
1 - I prepared SD with
raspbian and booted with ethernet by adding to
cmdline.txt option ip=192.168.0.2 (free ip in my local network) at the end of line.
2 - logged in via SSH with default login: pi@192.168.0.2 and pass: raspberry
3 - copied kernel7.img provided on DVD to /boot/
4 - copied modules provided on DVD to /lib/modules
5 - configured /etc/modules-load.d/modules.conf
snd-bcm2835
i2c-bcm2708
i2c-dev
spi_bcm2835
flexfb
fbtft_device
6 - added file /etc/modprobe.d/flexfb.conf
options flexfb width=320 height=480 regwidth=16 init=-1,0xb0,0x0,-1,0x11,-2,250,-1,0x3A,0x55,-1,0xC2,0x44,-1,0xC5,0x00,0x00,0x00,0x00,-1,0xE0,0x0F,0x1F,0x1C,0x0C,0x0F,0x08,0x48,0x98,0x37,0x0A,0x13,0x04,0x11,0x0D,0x00,-1,0xE1,0x0F,0x32,0x2E,0x0B,0x0D,0x05,0x47,0x75,0x37,0x06,0x10,0x03,0x24,0x20,0x00,-1,0xE2,0x0F,0x32,0x2E,0x0B,0x0D,0x05,0x47,0x75,0x37,0x06,0x10,0x03,0x24,0x20,0x00,-1,0x36,0x28,-1,0x11,-1,0x29,-3
options fbtft_device debug=3 rotate=90 name=flexfb speed=16000000 gpios=reset:25,dc:24
I took this options from DVD file etc/modules-4
7 - update /boot/cmdline.txt to:
dwc_otg.lpm_enable=0 console=tty1 console=ttyAMA0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait fbcon=map:11 fbcon=font:ProFont6x11 fsck.repair=yes root wait
most important part is fbcon=map:11. This LCD get attached to fb1 not fb0 . everything else is up to you
8 - halt system,
9 - attach screen
10 - boot it!
I stopped here, because I don't need X system here. But if you need X system, replace org settings from fb0 to fb1.