From: Sebastian Reichel <[email protected]> this commit adds support for * Nokia N900 * Beagleboard * Pandaboard --- debian/changelog | 9 ++++++++- src/system/subarch-arm-linux.c | 4 +++- 2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog index 30a9e7a..172d014 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,15 @@ libdebian-installer (0.79) UNRELEASED; urgency=low + [ Hector Oron ] * subarch-arm-linux.c: add mx5 flavour (armhf architecture) - -- Hector Oron <[email protected]> Thu, 21 Apr 2011 13:41:37 +0100 + [ Sebastian Reichel ] + * subarch-arm-linux.c: remove omap4 flavour (it's supported by omap) + * Add support for Nokia N900 + * Add support for Pandaboard + * Add support for Beagleboard + + -- Sebastian Reichel <[email protected]> Wed, 15 Jun 2011 13:12:49 +0200 libdebian-installer (0.78) unstable; urgency=low diff --git a/src/system/subarch-arm-linux.c b/src/system/subarch-arm-linux.c index f63bb0b..b052294 100644 --- a/src/system/subarch-arm-linux.c +++ b/src/system/subarch-arm-linux.c @@ -15,7 +15,6 @@ struct map { static const char *supported_generic_subarches[] = { "dove", "omap", - "omap4", "mx51", "mx5", NULL @@ -77,6 +76,9 @@ static struct map map_hardware[] = { { "ARM-Versatile PB", "versatile" }, { "Genesi Efika MX (Smartbook)", "mx5" }, { "Genesi Efika MX (Smarttop)", "mx5" }, + { "Nokia RX-51 board", "omap" }, + { "OMAP3 Beagle Board", "omap" }, + { "OMAP4 Panda board", "omap" }, { NULL, NULL } }; -- 1.7.2.5 -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

