FCBackground-RFCode

From VentureResearchWiki
Jump to navigation Jump to search

BOARD SETUP[edit | edit source]

U-boot[edit | edit source]

substitute the u-boot-vrreader... file with the latest u-boot file substitute 1c0000 with the size of u-boot

bootp
mw.b 0x80000000 0xff 0x1c0000
tftp 0x80000000 u-boot-vrreader-am35.bin
nand erase 0x80000 1c0000
nand write 0x80000000 0x80000 1c0000

reset

kernel[edit | edit source]

setenv ethaddr [MAC in format F8:DC:7A:00:A7:C8]
setenv get_kernel nand read.i 0x80000000 0x280000 0x300000
setenv bootargs_fs mem=256M console=ttyO2,115200n8 noinitrd root=/dev/mtdblock4 rw rootfstype=jffs2 eth=$ethaddr
setenv boot_fs run get_kernel\; setenv bootargs \$bootargs_fs\; bootm 0x80000000
setenv bootcmd run boot_fs
setenv bootdelay 1
save

reset
bootp
mw.b 0x80000000 0xFF 0x500000
tftp 0x80000000 uImage-vrreader-am35.bin
nand erase 0x280000 0x500000
nand write 0x80000000 0x280000 0x300000
setenv bootargs console=ttyO2,115200n8 root=/dev/nfs rw ip=dhcp nfsroot=192.168.19.128:/srv/nfs/image eth=$ethaddr consoleblank=0 omapfb.mode=lcd:1024x768@60
bootm 0x80000000

filesystem[edit | edit source]

scp venture@192.168.19.14:/home/venture/fcb/test-scripts/fcb-prefirstrun.sh /tmp/
sh /tmp/fcb-prefirstrun.sh

reboot

provisioning[edit | edit source]

first run[edit | edit source]

scp venture@192.168.19.14:/home/venture/fcb/test-scripts/fcb-firstrun-rfc.sh /tmp/
sh /tmp/fcb-firstrun-rfc.sh

reboot

Login Information[edit | edit source]

username: root
password: rfid4ever_vr

application specific settings[edit | edit source]