summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2011-02-11 19:51:29 +0000
committerDave Chapman <dave@dchapman.com>2011-02-11 19:51:29 +0000
commit9e638c7bc8f1e42769e2df49ea43eff6c5e05db1 (patch)
treebfab09a063b861f49ec7098912a38696278d8eed /debian
parent751e922783a18aeaeed532bffac300f917f4e159 (diff)
downloadrockbox-9e638c7bc8f1e42769e2df49ea43eff6c5e05db1.tar.gz
rockbox-9e638c7bc8f1e42769e2df49ea43eff6c5e05db1.zip
FS#11924 - Use separate targets for RaaA devices. This changes tools/configure to present the (currently four) possible RaaA targets as separate menu items instead of a single "Application" item with a follow-up question.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29286 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'debian')
-rwxr-xr-xdebian/rules9
1 files changed, 8 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules
index 380d0d21b8..7df96d22ab 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,13 @@
1#!/usr/bin/make -f 1#!/usr/bin/make -f
2 2
3CONFIGURE_OPTIONS := --platform=M --lcdwidth=800 --lcdheight=480 --target=application --ram=8 --rbdir=/.rockbox --type=N 3# We deduce the target based on the available version of the Maemo SDK
4ifeq (1,$(shell pkg-config --atleast-version=5 maemo-version && echo 1))
5TARGET=nokian900
6else
7TARGET=nokian8xx
8endif
9
10CONFIGURE_OPTIONS := --target=$(TARGET) --lcdwidth=800 --lcdheight=480 --ram=8 --rbdir=/.rockbox --type=N
4DESKTOP_DIR := `pkg-config --variable=desktopentrydir osso-af-settings` 11DESKTOP_DIR := `pkg-config --variable=desktopentrydir osso-af-settings`
5 12
6export DH_VERBOSE=1 13export DH_VERBOSE=1