blob: 8ac95a393013678e1691b60d3be3810e0b020eba (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
CONFIG_DIR=.config/rockbox.org
mkdir --parents $CONFIG_DIR
# Copy over a default config file or set default language
# cp --no-clobber config.cfg.default $CONFIG_DIR/config.cfg
export HOME=$(pwd)
./rockbox/bin/rockbox
|