From dbfdeaeb46453d300b975dcfb6790f3b16f9e6b5 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 26 Nov 2010 15:18:01 +0100 Subject: implement the concept of target choice by embedded system or architecture you can now choose between specific embedded systems like PC Engines ALIX boards, Foxboard, .. or between generic architecture support like x86, x86_64, mips, ... This does reduce the overhead of duplicate configuration files in target directory. Now qemu, toolchain and ibm x40 support is combined in one target directory target/x86. Distinguishing between hardware profiles happens via menu based configuration. (CPU choice for kernel, CFLAGS for package building, ..). We will see if this is the right direction. --- target/mips64el/xorg.conf | 53 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 target/mips64el/xorg.conf (limited to 'target/mips64el/xorg.conf') diff --git a/target/mips64el/xorg.conf b/target/mips64el/xorg.conf new file mode 100644 index 000000000..c9c9388f2 --- /dev/null +++ b/target/mips64el/xorg.conf @@ -0,0 +1,53 @@ +Section "ServerLayout" + Identifier "Default Layout" + Screen "Default Screen" + Option "AIGLX" "false" +EndSection + +Section "ServerFlags" + Option "NoTrapSignals" +EndSection + +Section "Module" + Load "vgahw" + Load "fb" + Load "exa" + Load "xaa" + Load "int10" + Load "ddc" + Load "i2c" + Load "vbe" + Disable "glx" + Disable "dri" +EndSection + +Section "Device" + Identifier "card0" + Driver "siliconmotion" + VendorName "Silicon Motion, Inc." + BoardName "SM712 LynxEM+" + BusID "PCI:0:8:0" + Option "AccelMethod" "EXA" + Option "pci_burst" "true" + Option "HWCursor" "false" + Option "SWCursor" "true" + Option "UseBIOS" "false" + Option "PanelSize" "1024x600" +EndSection + +Section "Monitor" + Identifier "Generic Monitor" + Option "DPMS" "true" + HorizSync 30-70 + VertRefresh 50-80 +EndSection + +Section "Screen" + Identifier "Default Screen" + Device "card0" + Monitor "Generic Monitor" + DefaultDepth 16 + SubSection "Display" + Modes "1024x600" + EndSubSection +EndSection -- cgit v1.2.3