Newer
Older
barebox / defaultenv-2 / base / bin / bootargs-root-jffs2
@Sascha Hauer Sascha Hauer on 18 May 2012 144 bytes Add next generation default environment template
#!/bin/sh

while getopt "m:" opt; do
	if [ ${opt} = m ]; then
		mtd=${OPTARG}
	fi
done

global.linux.bootargs.root="root=$mtd rootfstype=jffs2"