#!/bin/sh machine=tx51 # use 'dhcp' to do dhcp in barebox and in kernel # use 'none' if you want to skip kernel ip autoconfiguration ip=dhcp # or set your networking parameters here #eth0.ipaddr=a.b.c.d #eth0.ethaddr=de:ad:be:ef:00:00 #eth0.netmask=a.b.c.d #eth0.serverip=a.b.c.d #eth0.gateway=a.b.c.d # can be either 'nfs', 'tftp', 'nor' or 'nand' kernel_loc=tftp # can be either 'net', 'nor', 'nand' or 'initrd' rootfs_loc=net # can be either 'jffs2' or 'ubifs' rootfs_type=ubifs rootfsimage=root-$machine.$rootfs_type kernelimage=zImage_$machine #kernelimage=uImage-$machine #kernelimage=Image-$machine #kernelimage=Image-$machine.lzo kernel_part=nand0.kernel #nfsroot="$serverip:/srv/root" autoboot_timeout=3 bootargs="console=ttymxc0,115200" nand_device=mxc_nand nand_parts="256k(barebox)ro,256k(bareboxenv),4M@0xc00000(kernel),64M(rootfs),-(rootfs_data)" # set a fancy prompt (if support is compiled in) PS1="\e[1;32mbarebox@\e[1;31mtx51:\w\e[0m "