diff options
Diffstat (limited to 'tools/configure')
-rwxr-xr-x | tools/configure | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 0a8b96dc75..ef03ed93f3 100755 --- a/tools/configure +++ b/tools/configure @@ -213,6 +213,8 @@ if [ -z "$archos" ]; then echo "4 - Archos Recorder v2" echo "5 - Neo mStation" echo "6 - Neo 35" + echo "7 - Archos Ondio SP" + echo "8 - Archos Ondio FM" getit=`input`; @@ -253,6 +255,20 @@ if [ -z "$archos" ]; then keypad="-DHAVE_NEO_KEYPAD" ;; + 7) + archos="ondiosp" + target="-DARCHOS_ONDIOSP" + display="-DHAVE_LCD_BITMAP" + keypad="-DHAVE_ONDIO_KEYPAD" + ;; + + 8) + archos="ondiofm" + target="-DARCHOS_ONDIOFM" + display="-DHAVE_LCD_BITMAP" + keypad="-DHAVE_ONDIO_KEYPAD" + ;; + *) archos="recorder" target="-DARCHOS_RECORDER" |