Skip to content

Commit

Permalink
archos A32: add rudimentary support
Browse files Browse the repository at this point in the history
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
  • Loading branch information
koenkooi committed Jun 29, 2011
1 parent 413933f commit 4b68994
Show file tree
Hide file tree
Showing 4 changed files with 2,150 additions and 0 deletions.
41 changes: 41 additions & 0 deletions conf/machine/archosa32.conf
@@ -0,0 +1,41 @@
#@TYPE: Machine
#@NAME: OMAP3 based Archos A32
#@DESCRIPTION: Machine configuration for the Archos A32 (Gen8)

TARGET_ARCH = "arm"
require conf/machine/include/omap3.inc

ASSUME_PROVIDED += "u-boot x-load"

PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
XSERVER = "xserver-xorg \
xf86-input-evdev \
xf86-input-mouse \
xf86-input-tslib \
xf86-video-omapfb \
xf86-input-keyboard"

#What is the correct one, both seem in use?
MACHINE_GUI_CLASS = "bigscreen"
GUI_MACHINE_CLASS = "bigscreen"

#800 * 480 Widescreen
MACHINE_DISPLAY_WIDTH_PIXELS = "240"
MACHINE_DISPLAY_HEIGHT_PIXELS = "320"

KERNEL_IMAGETYPE = "zImage"

PREFERRED_PROVIDER_virtual/kernel = "linux-omap-archos"

# Ship all kernel modules
MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"

IMAGE_FSTYPES += "tar.bz2"
EXTRA_IMAGECMD_jffs2 = "-lnp "

SERIAL_CONSOLE = "115200 ttyS2"

CMDLINE = "console=ttyS2,115200n8 androidboot.console=ttyS2 extrabaud=1000000 init=/linuxrc debug omapdss.debug=0 vram=4915200 omapfb.vram=0:4915200 omapfb.debug=0"

MACHINE_FEATURES = "kernel26 apm usbgadget usbhost keyboard vfat ext2 screen touchscreen wifi"

@@ -0,0 +1,26 @@
From 6ea8806389f51e1f9dca66c2f65dc09d763136e9 Mon Sep 17 00:00:00 2001
From: Koen Kooi <koen@dominion.thruhere.net>
Date: Wed, 29 Jun 2011 16:27:46 +0200
Subject: [PATCH] archos_hdd: fix include path

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
drivers/usb/storage/archos_hdd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/storage/archos_hdd.c b/drivers/usb/storage/archos_hdd.c
index b389d1f..d9d0d45 100644
--- a/drivers/usb/storage/archos_hdd.c
+++ b/drivers/usb/storage/archos_hdd.c
@@ -27,7 +27,7 @@
#include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h>
-#include <../../scsi/sd.h>
+#include "../../scsi/sd.h"

#include <mach/board-archos.h>

--
1.6.6.1

0 comments on commit 4b68994

Please sign in to comment.