$pkgname_$pkgver.tar.gz ?!

I am trying to package oroborus window manager and a couple of accompanying utilities, and the source tarball isn't named according the established way, but like in the subject.
I made this simple PKGBUILD:
# Contributor : Stavros Giannouris <[email protected]>
pkgname=oroborus
pkgver=2.0.15
pkgrel=1
pkgdesc="A minimalistic window manager"
url="http://www.oroborus.org/?node=Main"
license=""
depends=('xorg')
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://www.oroborus.org/debian/dists/sid/main/source/x11/$pkgname_$pkgver.tar.gz)
md5sums=('c331253852c050b3f1d1f0d823a31496')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
But when I try to build it, I get the following:
[stavrosg@gondolin oroborus]$ makepkg
==> Entering fakeroot environment
==> Making package: oroborus 2.0.15-1 (Sun Oct 2 21:50:36 EEST 2005)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
==> Downloading 2.0.15.tar.gz
--21:50:37-- http://www.oroborus.org/debian/dists/sid/main/source/x11/2.0.15.tar.gz
=> `2.0.15.tar.gz'
Resolving www.oroborus.org... 213.239.207.20
Connecting to www.oroborus.org|213.239.207.20|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
21:50:37 ERROR 404: Not Found.
==> ERROR: Failed to download 2.0.15.tar.gz
==> Aborting...
If I put the full address (without variables) in the source field, it works.
This is probably a makepkg bug, right?
what do you think, is my solution a good work around, or a better one exists?
-S.

yes, the underscore is a valid variable name... in cases like this, I usually do:
${pkgname}_${pkgver}
which will always work no matter that the char is (no need to escape) - so if you're ever unsure, just try it this way

Similar Messages

  • Kde: lipstik, dotcurve, kpager2, taskvar v2, kio-locate

    lipstik
    - style based on plastik
    PKGBUILD
    pkgname=lipstik
    pkgver=1.0beta1
    pkgrel=1
    pkgdesc="Based on the plastik style, Lipstik is a purified style with many options to tune your desktop look."
    url="http://www.kde-look.org/content/show.php?content=18223"
    license=""
    depends=(kdebase)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://www.kde-look.org/content/files/18223-$pkgname-$pkgver.tar.bz2)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/opt/kde
    make || return 1
    make prefix=$startdir/pkg/opt/kde install
    dotcurve
    - very simple style
    PKGBUILD
    pkgname=dotcurve
    pkgver=0.3b
    pkgrel=1
    pkgdesc="Your faster style is back! featuring translucent menus, and configuration."
    url="http://www.kde-look.org/content/show.php?content=16211"
    license=""
    depends=(kdebase)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://webs.ono.com/usr047/uucp/$pkgname-$pkgver.tar.bz2)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/opt/kde
    make || return 1
    make prefix=$startdir/pkg/opt/kde install
    kpager2
    - a complete desktop pager
    PKGBUILD
    pkgname=kpager2
    pkgver=0.5.2
    pkgrel=1
    pkgdesc="The is probably the most powerfull pager for KDE. (The author wrote thsi sentence ¬_¬')"
    url="http://www.kde-apps.org/content/show.php?content=7120&vote=good&tan=33883408"
    license=""
    depends=(kdebase)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://www.uni-weimar.de/~wolff3/kdelook/$pkgname-$pkgver.tar.bz2)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver/kpager2
    find . -print -exec touch {} ;
    ./configure --prefix=/opt/kde
    make
    patch src/kpagermainwin.moc.cpp < ../../../kpagermainwin.moc.cpp.diff || return 1
    make || return 1
    make prefix=$startdir/pkg/opt/kde install
    kpagermainwin.moc.cpp.diff
    9a10,12
    > #include "version.h"
    > #ifndef KPAGER_IS_APPLET
    >
    103a107,108
    >
    > #endif
    taskvar v2
    - a nice taskvar with window preview
    PKGBUILD
    pkgname=mtaskbar
    pkgver=0.7
    pkgrel=1
    pkgdesc="It is a modified TaskBar for the KDE 3.3 kicker panel which supports thumbnail images of application windows, transparency on (semi) transparent panels and a few otherfeatures to beatifulize the kicker panel without loosing convenient functionality."
    url="http://www.uni-weimar.de/~wolff3/index_taskbar.html"
    license=""
    depends=(kdebase)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://www.uni-weimar.de/~wolff3/kdelook/$pkgname-$pkgver.tar.bz2)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver/mtaskbar
    find . -print -exec touch {} ;
    ./configure --prefix=/opt/kde
    make || return 1
    make prefix=$startdir/pkg/opt/kde install
    kio-locate
    - suport for locate:/ in kde (forget accessing the dir, open the file directly
    PKGBUILD
    pkgname=kio-locate
    pkgver=0.3.0
    pkgrel=1
    pkgdesc="kio-locate is a KDE I/O Slave for the locate command."
    url="http://www.kde-look.org/content/show.php?content=17201"
    license=""
    depends=(kdebase)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://arminstraub.de/downloads/kio-locate/$pkgname_$pkgver.tar.gz)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/opt/kde
    make || return 1
    make prefix=$startdir/pkg/opt/kde install

    Thank you, first, for contributing these PKGBUILDs.  I have successfully built and installed the package for taskbar v2.  I began attempting kpager2 and had errors.  Specifically, the message was:
    ./PKGBUILD: line 23: syntax error near unexpected token `||'
    ./PKGBUILD: line 23: `|| return 1'
    ==> Making package: kpager2 (Thu Mar 3 17:46:56 CST 2005)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==> Using local copy of kpager2-0.5.2.tar.bz2
    ==> WARNING: MD5sums are missing or incomplete. Cannot verify source integrity.
    ==> Extracting Sources...
    ==> tar --use-compress-program=bzip2 -xf kpager2-0.5.2.tar.bz2
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    /usr/bin/makepkg: line 557: build: command not found
    ==> ERROR: Build Failed. Aborting...
    Steps I took before receiving the error:
    1. created a directory called "kpager2"
    2. created a file called "PKGBUILD" in the aforementioned kpager2 directory and it contains the text of the PKGBUILD you posted
    3. in the kpager2 directory, created a file called "kpagermainwin.moc.cpp.diff" and the contents of the file are as you posted: 
    9a10,12
    > #include "version.h"
    > #ifndef KPAGER_IS_APPLET
    >
    103a107,108
    >
    > #endif
    4. ran "makepkg"
    Thanks for the help!

  • [REQUEST] jAOLT

    jAOLT allows you to create and organise auctions for eBay and AuVito offline. I would use it as a eBay Turbo Lister replacement.
    Here's my incomplete PKGBUILD (my first attempt at one):
    # Contributor: Gladstone <[email protected]>
    pkgname=jaolt
    pkgver=0.4.7-noarch-463
    pkgrel=1
    pkgdesc="Create and organise auctions for eBay and AuVito offline"
    arch=('i686')
    url="http://code.google.com/p/jaolt/"
    license=('GPL')
    depends=('java-runtime')
    makedepends=('apache-ant')
    source=(http://jaolt.googlecode.com/files/$pkgname_$pkgver.tar.gz)
    md5sums=()
    build() {
    cd $srcdir/$pkgname-$pkgver
    # TODO
    #ant
    The INSTALLING file in the .tar.gz tells me to use ant to build it, however I'm not sure how to specify the prefix as /usr.
    Have been referring to tuxguitar-svn's PKGBUILD and corresponding build.properties file, but don't feel confident enough with it.
    Last edited by gladstone (2009-07-08 16:21:08)

    I don't know much about ant, but whoever wrote the build.xml file didn't know more...
    In other words I took a big stick and prodded it until it worked, somewhat... It still looks like a piece of crap though.
    For some reason the start script tries to call chmod 777 on all files in /var/lib/jaolt/auctionplatforms, which of cause fails for the file installed there which belongs to root...
    Somehow it seems saner to me to take the zip file, extract it to $HOME/jaolt and run java -jar $HOME/jaolt/launcher.jar
    In case you really want to install it systemwide (I did warn you):
    pkgname=jaolt
    pkgver=0.4.7_noarch_463
    _pkgver=${pkgver//_/-}
    pkgrel=1
    pkgdesc="Create and organise auctions for eBay and AuVito offline"
    arch=('i686')
    url="http://code.google.com/p/jaolt/"
    license=('GPL')
    depends=('java-runtime')
    makedepends=('apache-ant')
    source=(http://jaolt.googlecode.com/files/${pkgname}_$_pkgver.tar.gz
    build.xml)
    md5sums=('a8837922cce8faeb6180a64bb82ae27e'
    '007a88d1bbecc3aa63050a57139f2ff5')
    build() {
    cd $srcdir/$pkgname
    sed "s|@PKGDIR@|$pkgdir|g" $srcdir/build.xml > build.xml
    ant
    Btw license=('GPL') is rather optimistic, if you are interested in the gory details take a look at license-instructions.txt .
    and the slightly modified build.xml
    <?xml version="1.0"?>
    <project basedir="." default="install" name="Install-routine for *NIX systems">
    <target name="install">
    <copy toDir="@PKGDIR@/usr/share/jaolt">
    <fileset dir=".">
    <include name="lib/**"/>
    <include name="plugins/**"/>
    <include name="data/languages/*.xml"/>
    <include name="*.txt"/>
    <include name="*.jar"/>
    <include name="NOTICE"/>
    </fileset>
    </copy>
    <copy toDir="@PKGDIR@/var/lib/jaolt">
    <fileset dir="data">
    <include name="auctionplatforms"/>
    <include name="auctionplatforms/empty"/>
    <include name="templates/**"/>
    </fileset>
    </copy>
    <copy file="jaolt.desktop" toDir="@PKGDIR@/usr/share/applications"/>
    <copy file="jaolt.xpm" toDir="@PKGDIR@/usr/share/pixmaps"/>
    <copy file="jaolt" toDir="@PKGDIR@/usr/bin"/>
    <exec executable="chmod" spawn="false">
    <arg line="-R 777 @PKGDIR@/var/lib/jaolt/auctionplatforms"/>
    </exec>
    <exec executable="chmod" spawn="false">
    <arg line="+x @PKGDIR@/usr/bin/jaolt"/>
    </exec>
    </target>
    </project>
    There are saner ways to do this (among them just using install in the PKGBUILD to copy the files appropriately) but I am to lazy .

  • Adding support to IDEA in gnupg | gpg?

    Hi everyone, im doing a university research and i need show an aplication who uses the IDEA algorithm. Looking in http://www.gnupg.org/faq/why-not-idea.en.html i see the module can be added but i don't know how.  here is another topic http://bytes.com/topic/unix/answers/928 … plugin-gpg but he don't add the suport only check the signature i think.
    The files can be downloaded also from here:
    http://www.gnupg.dk/contrib-dk/idea.c.gz
    http://www.gnupg.dk/contrib-dk/idea.c.gz.sig
    Maybe using AUR but i need modify the PKGBUILD to add suport for IDEA.
    # $Id: PKGBUILD 148992 2012-02-05 12:21:23Z andyrtr $
    # Contributor: Andreas Radke <andyrtr at archlinux.org>
    # Committer: Judd Vinet <[email protected]>
    pkgname=gnupg1
    pkgname_=gnupg
    pkgver=1.4.12
    pkgrel=2
    pkgdesc="GNU Privacy Guard - a PGP replacement tool"
    arch=('i686' 'x86_64')
    license=('GPL3')
    depends=('zlib' 'bzip2' 'libldap>=2.4.18' 'libusb-compat' 'curl>=7.16.2' 'readline>=6.0.00')
    source=(http://mirrors.dotsrc.org/gcrypt/gnupg/$pkgname_-$pkgver.tar.bz2)
    install=gnupg.install
    url="http://www.gnupg.org/"
    md5sums=('ce3742e5c7912559cab7894ad8ba7f6b')
    build() {
    cd "${srcdir}/${pkgname_}-${pkgver}"
    ./configure --prefix=/usr \
    --libexecdir=/usr/lib \
    --enable-noexecstack
    make
    #ln -s ${pkgname}-${pkgver}/scripts .. # seems obsolete now
    check() {
    cd "$srcdir/$pkgname_-$pkgver"
    make -k check #All 27 tests passed
    package () {
    cd "${srcdir}/${pkgname_}-${pkgver}"
    make DESTDIR="${pkgdir}" install
    # fix fileconflict with gnupg2 pkg
    rename 'gpg' 'gpg1' "${pkgdir}"/usr/share/man/man1/gpg* "${pkgdir}"/usr/bin/gpg*
    Should add the IDEA sources and the enable line right? http://ubuntuforums.org/showthread.php?t=649466
    --enable-idea
    but how add the url from the module ? I should try on virtual box i don't wanna break arch.
    Last edited by fpilee (2012-11-24 21:01:38)

    mike1jn a écrit:
    OH Dear!
    Yes I can.
    Does that mean something is corrupted?
    Probably... not sure if a 'repair' would correct it.
    I’ve only just converted from PSE9
    Mike
    That may be a factor, since one suspects a default in the conversion process plays a role in another bug (saving in version sets not working).

  • Can anyone try this?

    It's my first PKGBUILD.
    pkgname=simdock
    pkgver=1.2
    pkgrel=1
    pkgdesc="SimDock is a fast and customizable dockbar. It is written in c++ and wxWidgets"
    arch=('i686' 'x86_64')
    url="http://sourceforge.net/projects/simdock/"
    license=('GPL')
    depends=('wxgtk-2.6')
    source=(http://downloads.sourceforge.net/$pkgname/$pkgname_$pkgver.tar.gz)
    md5sums=('3acd7898efcc42a8d19bd9e02254303f')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make prefix=$startdir/pkg/usr install
    Last edited by The_ouroboros (2007-07-09 18:05:46)

    no it does not.
    I corrected your PKGBUILD a bit to bring it in a working state
    pkgname=simdock
    pkgver=1.2
    pkgrel=1
    pkgdesc="SimDock is a fast and customizable dockbar. It is written in c++ and wxWidgets"
    arch=('i686' 'x86_64')
    url="http://sourceforge.net/projects/simdock/"
    license=('GPL')
    depends=('wxgtk')
    source=(http://downloads.sourceforge.net/$pkgname/SimBar.tar.bz2)
    md5sums=('3acd7898efcc42a8d19bd9e02254303f')
    build() {
    cd $startdir/src/SimBar
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    Last edited by pressh (2007-07-09 19:02:11)

  • Convert .pkg folder to .pkg.tar.gz?

    I just build a package gmchess-0.20-1-i686.pkg.tar.gz from PKGBUILD,  I unpack the gmchess-0.20-1-i686.pkg.tar.gz and create a folder gmchess-0.20-1-i686.pkg, after changing some .png files in this folder, I compress the gmchess-0.20-1-i686.pkg folder back to gmchess-0.20-1-i686.pkg.tar.gz, however it can not be installed with command pacman -U, I try to search wiki, but get no clues, thanks for help.
    $ sudo pacman -U gmchess-0.20-1-i686.pkg.tar.gz
    Password:
    loading package data...
    error: missing package metadata in gmchess-0.20-1-i686.pkg.tar.gz
    error: 'gmchess-0.20-1-i686.pkg.tar.gz': invalid or corrupted package

    Xyne wrote:
    Open up the PKGBUILD and replace the names of the old png files with the names of the new ones in the "source" array, e.g.:
    source=(old_img_1.png old_img_2.png old_img_3.png)
    source=(new_img_1.png new_img_2.png new_img_3.png)
    Then run "makepkg -g" to generate the new md5sum array. Open the PKGBUILD again and replace the old md5sum array with the new one.
    Thanks for your detailed reply, here is PKGBUILD, there is no source array about png, can I just put in the source array for new pngs?
    =================================================================================================
    # Contributor: yetist <[email protected]>
    pkgname=gmchess
    pkgver=0.20
    pkgrel=1
    pkgdesc="Chinese chess game"
    arch=("i686" "x86_64")
    url="http://code.google.com/p/gmchess/"
    license=('GPL2')
    depends=("gtkmm" "libglademm")
    source=("http://gmchess.googlecode.com/files/$pkgname-$pkgver.tar.bz2")
    md5sums=('14ac37609c2fd6f0611001ed4508d688')
    build() {
            cd "$startdir/src/$pkgname-$pkgver"
        ./configure --prefix=/usr || return 1
            make || return 1
            make DESTDIR="$startdir/pkg" install || return 1

  • AUR pkgver problem

    This concerns the aur package mp3cd which is out-of-date. As pkgver should be the developers version number and the result in this case is that AUR sees an older package as newer? Present PKGBUILD pkger;
    pkgname=mp3cd
    pkgver=1.026001
    pkgrel=1
    source=("$url/download/$pkgname-$pkgver.tar.gz")
    As you can see, pkgver is part of the url, which it should be. But the present dev version is 1.0.27 which leads to the problem that AUR sees version 1.0.26001 as newer than 1.0.27, which it is not.  I've tried to search for this but haven't found anything, just a debate about pkgrel.
    I could hardcode the url but then I wouldn't be following standards and maybe the PKGBUILD would lead to an upodate to an older version.

    Well I edited the present AUR PKGBUILD to reflect the new dev version 1.0.27 like this;
    pkgname=mp3cd
    pkgver=1.027
    pkgrel=3
    And still yaourt/packer want to update it from thenew dev version 1.027 to version 1.026001. Maybe there's some obvius thing I miss?
    Since I like this app I'd like to adopt it but must have a functional PKGBUILD first. It does work on my set up locally, of course. Only have to block it in pacman.conf.
    :: Starting full aur upgrade...
    warning: mp3cd 1.027-3: ignoring package upgrade (1.027-3 => 1.026001-1)
    Last edited by swanson (2012-05-15 07:27:24)

  • [NEW] alexandria

    Hi,
    I was trying to make PKGBUILDs for Alexandria and its depends,
    Alexandria is a GNOME application to help you manage your book collection.
    http://www.gnomefiles.org/app.php?soft_id=110
    REXML
    # Contributor: Krzysiek Wojszko <w dot krzysiek at gmail dot com>
    pkgname=rexml
    pkgver=3.1.2
    pkgrel=1
    pkgdesc="REXML is an XML processor for the language Ruby."
    url="http://www.germane-software.com/software/rexml"
    license="GPL"
    depends=(ruby)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://www.germane-software.com/archives/$pkgname_$pkgver.tgz)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname_$pkgver
    ruby bin/install.rb -d $startdir/pkg install
    RUBY-AMAZON
    # Contributor: Krzysiek Wojszko <w dot krzysiek at gmail dot com>
    pkgname=ruby-amazon
    pkgver=0.9.0
    pkgrel=1
    pkgdesc="Ruby/Amazon is a Ruby language library that allows programmatic access to the popular Amazon Web site via the REST (XML over HTTP) based Amazon Web Services."
    url="http://www.caliban.org/ruby/ruby-amazon.shtml"
    license="GPL"
    depends=('ruby' 'rexml')
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://www.caliban.org/files/ruby/$pkgname-$pkgver.tar.gz)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ruby setup.rb config
    ruby setup.rb setup
    ruby setup.rb install --prefix=$startdir/pkg
    RUBY-GETTEXT
    # Contributor: Krzysiek Wojszko <w dot krzysiek at gmail dot com>
    pkgname=ruby-gettext
    pkgver=0.8.0
    pkgrel=1
    pkgdesc="Ruby-GetText-Package is Native Language Support Library and Tools
    which modeled after GNU gettext package, but is not a wrapper of GNU GetText."
    url="http://ponx.s5.xrea.com/hiki/ruby-gettext.html"
    license="LGPL"
    depends=('ruby' 'gettext' 'racc')
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://ponx.s5.xrea.com/hiki/hiki.xcg?c=plugin;plugin=
    attach_download;p=ruby-gettext;file_name=$pkgname-package-$pkgver.tar.gz)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-package-$pkgver
    ruby setup.rb config
    ruby setup.rb setup
    ruby setup.rb install --prefix=$startdir/pkg
    RACC
    # Contributor: Krzysiek Wojszko <w dot krzysiek at gmail dot com>
    pkgname=racc
    pkgver=1.4.4
    pkgrel=1
    pkgdesc="Parser Generator (yacc for ruby)"
    url="http://i.loveruby.net/en/prog/racc.html"
    license="LGPL"
    depends=(ruby)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://i.loveruby.net/archive/racc/$pkgname-$pkgver-all.tar.gz)
    #http://i.loveruby.net/archive/racc/racc-1.4.4-all.tar.gz
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver-all
    ruby setup.rb config
    ruby setup.rb setup
    ruby setup.rb install --prefix=$startdir/pkg
    RUBY-GNOME2
    # Contributor: Krzysiek Wojszko <w dot krzysiek at gmail dot com>
    pkgname=ruby-gnome2
    pkgver=0.12.0
    pkgrel=1
    pkgdesc="Ruby-GNOME2 is a set of Ruby language bindings for the GNOME 2.0 development environment."
    url="http://ruby-gnome2.sourceforge.jp/"
    license=""
    depends=()
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://kent.dl.sourceforge.net/sourceforge/ruby-gnome2/$pkgname-all-$pkgver.tar.gz)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-all-$pkgver
    ruby extconf.rb
    make
    make DESTDIR=$startdir/pkg install
    and finaly:
    ALEXANDRIA
    # Contributor: Krzysiek Wojszko <w dot krzysiek at gmail dot com>
    pkgname=alexandria
    pkgver=0.5.0
    pkgrel=1
    pkgdesc=" Alexandria is a GNOME application to help you manage your book collection."
    url="http://alexandria.rubyforge.org/"
    license="GPL"
    depends=('ruby' 'ruby-amazon' 'ruby-gettext' 'ruby-gnome2')
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=alexandria.install
    source=(http://rubyforge.org/frs/download.php/3445/$pkgname-$pkgver.tar.gz)
    md5sums=()
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ruby install.rb config
    ruby install.rb setup
    ruby install.rb install --prefix=$startdir/pkg
    alexandria.install
    # This is a default template for a post-install scriptlet. You can
    # remove any functions you don't need (and this header).
    # arg 1: the new package version
    pre_install() {
    /bin/true
    # arg 1: the new package version
    post_install() {
    gconftool-2 --shutdown
    # arg 1: the new package version
    # arg 2: the old package version
    pre_upgrade() {
    /bin/true
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    /bin/true
    # arg 1: the old package version
    pre_remove() {
    /bin/true
    # arg 1: the old package version
    post_remove() {
    /bin/true
    op=$1
    shift
    $op $*
    and after all this somethings wrong  maby something wrong with instaling ruby-programs I can run it only as a root, when running as user alexandria crashes. Maby someone has experience with ruby and will find some mistake.

    I have the same issue when running alexandria as user:
    Message: undefined method `map' for nil:NilClass
    Backtrace:
    /usr/lib/ruby/site_ruby/1.8/alexandria/book_providers.rb:157:in `update_priority'
    /usr/lib/ruby/site_ruby/1.8/alexandria/book_providers.rb:153:in `initialize'
    /usr/lib/ruby/site_ruby/1.8/alexandria/book_providers.rb:18:in `new'
    /usr/lib/ruby/site_ruby/1.8/alexandria/book_providers.rb:18:in `new'
    /usr/lib/ruby/1.8/singleton.rb:95:in `instance'
    /usr/lib/ruby/1.8/singleton.rb:84:in `instance'
    /usr/lib/ruby/site_ruby/1.8/alexandria/book_providers.rb:162:in `method_missing'/usr/lib/ruby/site_ruby/1.8/alexandria/ui/main_app.rb:814:in `initialize_ui'
    /usr/lib/ruby/site_ruby/1.8/alexandria/ui/main_app.rb:56:in `initialize'
    /usr/lib/ruby/site_ruby/1.8/alexandria/ui.rb:40:in `new'
    /usr/lib/ruby/site_ruby/1.8/alexandria/ui.rb:40:in `main'
    /usr/lib/ruby/site_ruby/1.8/alexandria.rb:56:in `main'
    /usr/bin/alexandria:10
    Release: 0.5.0
    /edit: Found it--it's even in the Readme.  :oops:
    $ gconftool-2 --shutdown [*]
    [*]: This is needed because the current GConf implementation won't
    dynamically reload the schemas. Note that you don't have to start it
    after that, it should be automatically spawned when needed.
    93,
    -Sascha.rb

  • Step by step for 2.6

    So I think im finally ready to make the plundge to the 2.6 kernel.
    So I need some help. Ive only compiled a kernel a few times, and I never changed many settings.
    So could someone give a step by step for it (being sure to list any arch-specific quirks)? I would greatly appreciate it.
    Also, I hear theres a patch that lets you run the Official Nvidia drivers with the 2.6 kerne, has anyone gone through this? I really have no idea how to go about doing this,as i've only ever installed the .run file.
    Any help would be appreciated.
    Also, its possible to switch between the 2.4 and 2.6 kernel, right? (obviously with a reboot).
    Lastly, Is a new release of the 2.6 due out anytime soon? I dont want to download and compile this just to find a new version comes out.

    You have to use module-init-tools which supercedes modutils.  I made a PKGBUILD for it for my local system simply so I could uninstall it easier if I wanted.  However, you still need the old modutils as well.
    Here is my hack to get module-init-tools working:
    1.  Use the PKGBUILD below to compile and install module-init-tools.
    2.  For each of modprobe, lsmod, rmmod, depmod, and modinfo from modutils, rename those to modprobe.old, lsmod.old, etc.  To find where these binaries are, use "pacman -Ql modutils".
    3.  Create symbolic links from the binaries that modutils used to provide to the new binaries that module-init-tools provides.  Again, use "pacman -Ql module-init-tools" to figure out where the new ones are.
    Example - modutils provides /sbin/lsmod.  Rename that to /sbin/lsmod.old.  module-init-tools provides /usr/bin/lsmod.  Create a symbolic link as follows:
    [root@limbo root]# ln -s /usr/bin/lsmod /sbin/lsmod
    If you aren't 100% sure what i am trying to say here, don't try any of it, or you will bork your system.  Also, this is more of a hack, and that's why I didn't upload the package to incoming.  I only made the PKGBUILD to keep track of where everything was going.
    Anyway... hope this helps you on your way to:
    [john@limbo john]$ uname -r
    2.6.0-test5
    [john@limbo john]$
    PKGBUILD
    pkgname=module-init-tools
    pkgver=0.9.13
    pkgdesc=""
    url="http://www.kernel.org/pub/linux/kernel/people/rusty/modules/"
    depends=()
    conflicts=()
    backup=()
    install=
    source=(http://www.kernel.org/pub/linux/kernel/people/rusty/modules/$pkgname-$pkgver.tar.gz)
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure
    make || return 1
    make prefix=$startdir/pkg/usr install

  • External USB HD does not work with HAL:

    External USB HD does not work with HAL:
    From the last 10 days the HAL auto-mount with ntfs-3g file system of my external hard drive  does not woks.
    But the manual mount procedure with the command mount -t ntfs-3g /dev/sdb* /mnt/XYZ works.
    I've followed the instructions in the wiki: http://wiki.archlinux.org/index.php/HAL and the system has worked up to the last kernel or HAL update.
    My fat32 usb-stick works without any problem.
    If I try to open the device with KDE it appears an error popup wit this message:
    TODO: have to rethink extra options
    Error: kio_media_mount_helper
    The log from the kernel.log is
    Nov 6 22:03:16 myhost usb 5-1: new high speed USB device using ehci_hcd and address 4
    Nov 6 22:03:16 myhost usb 5-1: configuration #1 chosen from 1 choice
    Nov 6 22:03:17 myhost Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    Nov 6 22:03:17 myhost ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    Nov 6 22:03:17 myhost Initializing USB Mass Storage driver...
    Nov 6 22:03:17 myhost scsi6 : SCSI emulation for USB Mass Storage devices
    Nov 6 22:03:17 myhost usb-storage: device found at 4
    Nov 6 22:03:17 myhost usb-storage: waiting for device to settle before scanning
    Nov 6 22:03:17 myhost usbcore: registered new interface driver usb-storage
    Nov 6 22:03:17 myhost USB Mass Storage support registered.
    Nov 6 22:03:22 myhost scsi 6:0:0:0: Direct-Access WDC WD32 00JB-00KFA0 0811 PQ: 0 ANSI: 0
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sdb: sdb1
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Attached SCSI disk
    Nov 6 22:03:22 myhost sd 6:0:0:0: Attached scsi generic sg2 type 0
    Nov 6 22:03:22 myhost usb-storage: device scan complete
    and the error.log is
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Do you have some idea ....
    Bye.

    I have done the following:
    Downloaded the patched hal version.
    used makepkg in /abs/local/trunk/ to create a pkg for pacman
    used sudo pacman -U pkgname to install it.
    used sudo nano /etc/hal/fdi/policy/preferences.fdi to create the fdi file with the following content:
    saved the file and removed my ntfs entryes from fstab and rebooted. and still there is no automount off ntfs partitions.
    have i done something wrong?
    br fjodork
    WARNING: what follows is a guide of what did work for me, I'm still in an early stage of learning linux, so please correct me if anything of what follows is wrong/dangerous/stupid. As I said, this worked for me, it's not pretty, since I was learning each step on the fly and I'm sure there are better ways to do this.
    So fjodork, you seem to have done the the necessary steps, though i couldn't get it to work until i first removed hal without dependencies
    pacman -Rd hal
    it will give you some warning about the dependencies, ignore  it since we are reinstalling hal in a few steps.
    First i tried to follow Raymano's link, obviously it showed me nothing in the browser so I thought it might be a broken link.
    So I downloaded the source tarball from here http://hal.freedesktop.org/releases/hal-0.5.10.tar.gz
    unpacked it changed the /tools/hal-storage-mount.c as per Milfadoodle's instructions.
    at first I tried to compile directly from source, the process would finish without a glitch though after reboot nothing changed, as if hal weren't
    installed, i guess there were issues with paths. anyway read on
    Then repacked the source in tarball, copied it to /var/abs/extra/system/hal and modified the PKGBUILD as follows
    makedepends=('pkgconfig' 'gperf')
    options=('!libtool')
    install=hal.install
    source=(${pkgname}-${pkgver}.tar.gz #removed url so makepkg looks in the current directory for the tarball
        hal
        hal-policy.patch
        cryptsetup_location.patch
        hal-0.5.9-hide-diagnostic.patch
        ntfs3g-valid-options.patch)
    md5sums=('6641c30a27c00485c6accac5110ff911' # replace with md5sum of your package's sourceball (run md5sum filename)
             '882f67668cb14a0a9e4a27ef22278027'
             '5ba8b610aa9763a5f42b9f7cbd7a86ad'
    then makepkg (i had to add --asroot, don't ask why
    and finally pacman -U hal-0.5.10-1-i686.pkg
    another reboot and everything worked without a glitch!:D (yeah i know i still haven't got rid of the reboot mentality )
    I have also put the policy files as per the wiki instructions.
    PS: I know this is a dirty way to getting things done but as i said, I'm just starting
    If anyone could comment/correct/explain this post I'd be more than happy, the automount issue was bothering me for about a month now (you'll say why do I need ntfs in the first place? well, I only recently switched for Linux as my primary OS, these are some relics of the M$ era

  • Need Help build my ati custom kernel

    Hello.
    I have been trying to build a custom kernel based on kernel2612-cko2-swsusp2 but modified:
    -2.6.10 version for better compatibility with Ati drivers
    -without swsusp2
    -without cdburning.patch
    Here are PKGBUILD:
    # Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org>
    pkgname=kernel2610-cko2-ati
    pkgver=2.6.10
    pkgrel=1
    pkgdesc="The Linux Kernel 2.6.10 and modules (IDE support) with -cko2 patchset and ati support"
    url="http://www.kernel.org"
    backup=('boot/kconfig26')
    depends=('module-init-tools')
    install=kernel26.install
    source=(http://kem.p.lodz.pl/~peter/cko/rel/patch-2.6.10-cko2.bz2 ftp://ftp.kernel.org/pub/linux/kernel/v … er.tar.bz2 config)
    build() {
      cd $startdir/src/linux-$pkgver
      patch -Np1 -i ../patch-2.6.10-cko2 || return 1
      # get rid of the 'i' in i686
      carch=`echo $CARCH | sed 's|i||'`
      cat ../config | sed "s|#CARCH#|$carch|g" >./.config
      # build the full kernel version to use in pathnames
      . ./.config
      _kernsuffix="-cko2${CONFIG_LOCALVERSION}"
      _kernver="${pkgver}${_kernsuffix}"
      # load configuration
      yes "" | make config
      # build!
      make clean bzImage modules || return 1
      mkdir -p $startdir/pkg/{lib/modules,boot}
      make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
      cp System.map $startdir/pkg/boot/System.map2612${_kernsuffix}
      cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz2612${_kernsuffix}
      install -D -m644 Makefile
        $startdir/pkg/usr/src/linux-${_kernver}/Makefile
      install -D -m644 .config
        $startdir/pkg/usr/src/linux-${_kernver}/.config
      install -D -m644 .config $startdir/pkg/boot/kconfig2612${_kernsuffix}
      mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include
      mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/kernel
      for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
        cp -a include/$i $startdir/pkg/usr/src/linux-${_kernver}/include/
      done
      # copy files necessary for later builds, like nvidia and vmware
      cp Module.symvers $startdir/pkg/usr/src/linux-${_kernver}
      cp -a scripts $startdir/pkg/usr/src/linux-${_kernver}
      mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/.tmp_versions
      cp arch/i386/Makefile $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/
      cp arch/i386/kernel/asm-offsets.s
        $startdir/pkg/usr/src/linux-${_kernver}/arch/i386/kernel/
      # copy in Kconfig files
      for i in `find . -name "Kconfig*"`; do
        mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
        cp $i $startdir/pkg/usr/src/linux-${_kernver}/$i
      done
      cd $startdir/pkg/usr/src/linux-${_kernver}/include && ln -s asm-i386 asm
      chown -R root.root $startdir/pkg/usr/src/linux-${_kernver}
      cd $startdir/pkg/lib/modules/${_kernver} &&
        (rm -f source build; ln -sf /usr/src/linux-${_kernver} build)
    md5sums=('a1e4a2337efb657d48dc3861e8bd40b6' 'cffcd2919d9c8ef793ce1ac07a440eda'
             '8c9bfd3774ee0bce71984623420a828d')
    and the config:
    # Automatically generated make config: don't edit
    # Linux kernel version: 2.6.12-cko2
    # Sun Jul  3 21:21:40 2005
    CONFIG_X86=y
    CONFIG_MMU=y
    CONFIG_UID16=y
    CONFIG_GENERIC_ISA_DMA=y
    CONFIG_GENERIC_IOMAP=y
    # Code maturity level options
    CONFIG_EXPERIMENTAL=y
    # CONFIG_CLEAN_COMPILE is not set
    CONFIG_BROKEN=y
    CONFIG_BROKEN_ON_SMP=y
    CONFIG_LOCK_KERNEL=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    # General setup
    CONFIG_LOCALVERSION="-swsusp2"
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_POSIX_MQUEUE=y
    # CONFIG_BSD_PROCESS_ACCT is not set
    CONFIG_SYSCTL=y
    # CONFIG_AUDIT is not set
    CONFIG_HOTPLUG=y
    CONFIG_KOBJECT_UEVENT=y
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    # CONFIG_CPUSETS is not set
    # CONFIG_EMBEDDED is not set
    CONFIG_KALLSYMS=y
    # CONFIG_KALLSYMS_ALL is not set
    # CONFIG_KALLSYMS_EXTRA_PASS is not set
    CONFIG_PRINTK=y
    CONFIG_BUG=y
    CONFIG_BASE_FULL=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_SHMEM=y
    CONFIG_CC_ALIGN_FUNCTIONS=0
    CONFIG_CC_ALIGN_LABELS=0
    CONFIG_CC_ALIGN_LOOPS=0
    CONFIG_CC_ALIGN_JUMPS=0
    # CONFIG_TINY_SHMEM is not set
    CONFIG_BASE_SMALL=0
    # Loadable module support
    CONFIG_MODULES=y
    CONFIG_MODULE_UNLOAD=y
    # CONFIG_MODULE_FORCE_UNLOAD is not set
    CONFIG_OBSOLETE_MODPARM=y
    CONFIG_MODVERSIONS=y
    CONFIG_MODULE_SRCVERSION_ALL=y
    CONFIG_KMOD=y
    CONFIG_STOP_MACHINE=y
    # Processor type and features
    CONFIG_X86_PC=y
    # CONFIG_X86_ELAN is not set
    # CONFIG_X86_VOYAGER is not set
    # CONFIG_X86_NUMAQ is not set
    # CONFIG_X86_SUMMIT is not set
    # CONFIG_X86_BIGSMP is not set
    # CONFIG_X86_VISWS is not set
    # CONFIG_X86_GENERICARCH is not set
    # CONFIG_X86_ES7000 is not set
    # CONFIG_M386 is not set
    # CONFIG_M486 is not set
    # CONFIG_M586 is not set
    # CONFIG_M586TSC is not set
    # CONFIG_M586MMX is not set
    CONFIG_M686=y
    # CONFIG_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    # CONFIG_MPENTIUMM is not set
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    # CONFIG_MK7 is not set
    # CONFIG_MK8 is not set
    # CONFIG_MCRUSOE is not set
    # CONFIG_MEFFICEON is not set
    # CONFIG_MWINCHIPC6 is not set
    # CONFIG_MWINCHIP2 is not set
    # CONFIG_MWINCHIP3D is not set
    # CONFIG_MGEODEGX1 is not set
    # CONFIG_MCYRIXIII is not set
    # CONFIG_MVIAC3_2 is not set
    CONFIG_X86_GENERIC=y
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_XADD=y
    CONFIG_X86_L1_CACHE_SHIFT=7
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    CONFIG_X86_PPRO_FENCE=y
    CONFIG_X86_WP_WORKS_OK=y
    CONFIG_X86_INVLPG=y
    CONFIG_X86_BSWAP=y
    CONFIG_X86_POPAD_OK=y
    CONFIG_X86_GOOD_APIC=y
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_HPET_TIMER=y
    CONFIG_SMP=y
    CONFIG_NR_CPUS=4
    CONFIG_MAX_IO_APICS=8
    CONFIG_SCHED_SMT=y
    CONFIG_PREEMPT=y
    CONFIG_PREEMPT_BKL=y
    CONFIG_X86_LOCAL_APIC=y
    CONFIG_X86_IO_APIC=y
    CONFIG_X86_TSC=y
    CONFIG_X86_MCE=y
    CONFIG_X86_MCE_NONFATAL=m
    CONFIG_X86_MCE_P4THERMAL=y
    CONFIG_TOSHIBA=m
    CONFIG_I8K=m
    CONFIG_X86_REBOOTFIXUPS=y
    # CONFIG_MICROCODE is not set
    # CONFIG_X86_MSR is not set
    # CONFIG_X86_CPUID is not set
    # Firmware Drivers
    # CONFIG_EDD is not set
    # CONFIG_NOHIGHMEM is not set
    CONFIG_HIGHMEM4G=y
    # CONFIG_HIGHMEM64G is not set
    CONFIG_HIGHMEM=y
    CONFIG_PROC_MM=y
    # CONFIG_PROC_MM_DUMPABLE is not set
    # CONFIG_HIGHPTE is not set
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    # CONFIG_EFI is not set
    CONFIG_IRQBALANCE=y
    CONFIG_HAVE_DEC_LOCK=y
    # CONFIG_REGPARM is not set
    CONFIG_SECCOMP=y
    CONFIG_HZ_1000=y
    # CONFIG_HZ_500 is not set
    # CONFIG_HZ_250 is not set
    # CONFIG_HZ_100 is not set
    CONFIG_HZ=1000
    # Power management options (ACPI, APM)
    CONFIG_PM=y
    # CONFIG_PM_DEBUG is not set
    CONFIG_SOFTWARE_SUSPEND=y
    CONFIG_PM_STD_PARTITION=""
    CONFIG_SUSPEND2=y
    # Image Storage (you need at least one writer)
    # CONFIG_SUSPEND2_FILEWRITER is not set
    CONFIG_SUSPEND2_SWAPWRITER=y
    # Page Transformers? We now use Cryptoapi.
    # User Interface Options
    CONFIG_SUSPEND2_USERSPACE_UI=y
    CONFIG_SUSPEND2_TEXT_MODE=y
    # General Options
    CONFIG_SUSPEND2_DEFAULT_RESUME2=""
    # CONFIG_SUSPEND2_KEEP_IMAGE is not set
    CONFIG_SUSPEND2_CHECK_RESUME_SAFE=y
    # ACPI (Advanced Configuration and Power Interface) Support
    CONFIG_ACPI=y
    CONFIG_ACPI_BOOT=y
    CONFIG_ACPI_INTERPRETER=y
    CONFIG_ACPI_SLEEP=y
    CONFIG_ACPI_SLEEP_PROC_FS=y
    # CONFIG_ACPI_SLEEP_PROC_SLEEP is not set
    CONFIG_ACPI_AC=y
    CONFIG_ACPI_BATTERY=y
    CONFIG_ACPI_BUTTON=y
    CONFIG_ACPI_VIDEO=y
    CONFIG_ACPI_FAN=y
    CONFIG_ACPI_PROCESSOR=y
    CONFIG_ACPI_THERMAL=y
    CONFIG_ACPI_ASUS=m
    CONFIG_ACPI_IBM=m
    CONFIG_ACPI_TOSHIBA=m
    CONFIG_ACPI_BLACKLIST_YEAR=0
    # CONFIG_ACPI_DEBUG is not set
    CONFIG_ACPI_BUS=y
    CONFIG_ACPI_EC=y
    CONFIG_ACPI_POWER=y
    CONFIG_ACPI_PCI=y
    CONFIG_ACPI_SYSTEM=y
    CONFIG_X86_PM_TIMER=y
    CONFIG_ACPI_CONTAINER=m
    # APM (Advanced Power Management) BIOS Support
    CONFIG_APM=y
    # CONFIG_APM_IGNORE_USER_SUSPEND is not set
    CONFIG_APM_DO_ENABLE=y
    # CONFIG_APM_CPU_IDLE is not set
    # CONFIG_APM_DISPLAY_BLANK is not set
    # CONFIG_APM_RTC_IS_GMT is not set
    # CONFIG_APM_ALLOW_INTS is not set
    # CONFIG_APM_REAL_MODE_POWER_OFF is not set
    # CPU Frequency scaling
    CONFIG_CPU_FREQ=y
    CONFIG_CPU_FREQ_TABLE=m
    # CONFIG_CPU_FREQ_DEBUG is not set
    CONFIG_CPU_FREQ_STAT=m
    CONFIG_CPU_FREQ_STAT_DETAILS=y
    CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    CONFIG_CPU_FREQ_GOV_POWERSAVE=m
    CONFIG_CPU_FREQ_GOV_USERSPACE=m
    CONFIG_CPU_FREQ_GOV_ONDEMAND=m
    CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
    # CPUFreq processor drivers
    CONFIG_X86_ACPI_CPUFREQ=m
    CONFIG_X86_POWERNOW_K6=m
    CONFIG_X86_POWERNOW_K7=m
    CONFIG_X86_POWERNOW_K7_ACPI=y
    CONFIG_X86_POWERNOW_K8=m
    CONFIG_X86_POWERNOW_K8_ACPI=y
    CONFIG_X86_GX_SUSPMOD=m
    CONFIG_X86_SPEEDSTEP_CENTRINO=m
    CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y
    CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y
    CONFIG_X86_SPEEDSTEP_ICH=m
    CONFIG_X86_SPEEDSTEP_SMI=m
    CONFIG_X86_P4_CLOCKMOD=m
    CONFIG_X86_CPUFREQ_NFORCE2=m
    CONFIG_X86_LONGRUN=m
    CONFIG_X86_LONGHAUL=m
    # shared options
    # CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set
    CONFIG_X86_SPEEDSTEP_LIB=m
    CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y
    # Bus options (PCI, PCMCIA, EISA, MCA, ISA)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_GOMMCONFIG is not set
    # CONFIG_PCI_GODIRECT is not set
    CONFIG_PCI_GOANY=y
    CONFIG_PCI_BIOS=y
    CONFIG_PCI_DIRECT=y
    CONFIG_PCI_MMCONFIG=y
    CONFIG_PCIEPORTBUS=y
    CONFIG_HOTPLUG_PCI_PCIE=m
    # CONFIG_HOTPLUG_PCI_PCIE_POLL_EVENT_MODE is not set
    # CONFIG_PCI_MSI is not set
    CONFIG_PCI_LEGACY_PROC=y
    CONFIG_PCI_NAMES=y
    # CONFIG_PCI_DEBUG is not set
    CONFIG_ISA_DMA_API=y
    CONFIG_ISA=y
    # CONFIG_EISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    # PCCARD (PCMCIA/CardBus) support
    CONFIG_PCCARD=m
    # CONFIG_PCMCIA_DEBUG is not set
    CONFIG_PCMCIA=m
    CONFIG_CARDBUS=y
    # PC-card bridges
    CONFIG_YENTA=m
    CONFIG_PD6729=m
    CONFIG_I82092=m
    CONFIG_I82365=m
    CONFIG_TCIC=m
    CONFIG_PCMCIA_PROBE=y
    CONFIG_PCCARD_NONSTATIC=m
    # PCI Hotplug Support
    CONFIG_HOTPLUG_PCI=m
    CONFIG_HOTPLUG_PCI_FAKE=m
    CONFIG_HOTPLUG_PCI_COMPAQ=m
    # CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set
    CONFIG_HOTPLUG_PCI_IBM=m
    CONFIG_HOTPLUG_PCI_ACPI=m
    CONFIG_HOTPLUG_PCI_ACPI_IBM=m
    CONFIG_HOTPLUG_PCI_CPCI=y
    CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
    CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
    CONFIG_HOTPLUG_PCI_SHPC=m
    # CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE is not set
    # Executable file formats
    CONFIG_BINFMT_ELF=y
    CONFIG_BINFMT_AOUT=y
    CONFIG_BINFMT_MISC=y
    # Device Drivers
    # Generic Driver Options
    CONFIG_STANDALONE=y
    CONFIG_PREVENT_FIRMWARE_BUILD=y
    CONFIG_FW_LOADER=y
    # CONFIG_DEBUG_DRIVER is not set
    # Memory Technology Devices (MTD)
    # CONFIG_MTD is not set
    # Parallel port support
    CONFIG_PARPORT=m
    CONFIG_PARPORT_PC=m
    CONFIG_PARPORT_SERIAL=m
    # CONFIG_PARPORT_PC_FIFO is not set
    # CONFIG_PARPORT_PC_SUPERIO is not set
    CONFIG_PARPORT_PC_PCMCIA=m
    CONFIG_PARPORT_NOT_PC=y
    # CONFIG_PARPORT_GSC is not set
    CONFIG_PARPORT_1284=y
    # Plug and Play support
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG is not set
    # Protocols
    CONFIG_ISAPNP=y
    CONFIG_PNPBIOS=y
    CONFIG_PNPBIOS_PROC_FS=y
    CONFIG_PNPACPI=y
    # Block devices
    CONFIG_BLK_DEV_FD=y
    # CONFIG_BLK_DEV_XD is not set
    # CONFIG_PARIDE is not set
    CONFIG_BLK_CPQ_DA=m
    CONFIG_BLK_CPQ_CISS_DA=m
    # CONFIG_CISS_SCSI_TAPE is not set
    CONFIG_BLK_DEV_DAC960=m
    # CONFIG_BLK_DEV_UMEM is not set
    # CONFIG_BLK_DEV_COW_COMMON is not set
    CONFIG_BLK_DEV_LOOP=y
    CONFIG_BLK_DEV_CRYPTOLOOP=y
    CONFIG_BLK_DEV_NBD=m
    CONFIG_BLK_DEV_SX8=m
    # CONFIG_BLK_DEV_UB is not set
    CONFIG_BLK_DEV_RAM=y
    CONFIG_BLK_DEV_RAM_COUNT=16
    CONFIG_BLK_DEV_RAM_SIZE=4096
    CONFIG_BLK_DEV_INITRD=y
    CONFIG_INITRAMFS_SOURCE=""
    # CONFIG_LBD is not set
    CONFIG_CDROM_PKTCDVD=m
    CONFIG_CDROM_PKTCDVD_BUFFERS=8
    # CONFIG_CDROM_PKTCDVD_WCACHE is not set
    # IO Schedulers
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_AS=y
    CONFIG_IOSCHED_DEADLINE=y
    CONFIG_IOSCHED_CFQ=y
    CONFIG_ATA_OVER_ETH=m
    # ATA/ATAPI/MFM/RLL support
    CONFIG_IDE=y
    CONFIG_BLK_DEV_IDE=y
    # Please see Documentation/ide.txt for help/info on IDE drives
    # CONFIG_BLK_DEV_IDE_SATA is not set
    # CONFIG_BLK_DEV_HD_IDE is not set
    CONFIG_BLK_DEV_IDEDISK=y
    CONFIG_IDEDISK_MULTI_MODE=y
    CONFIG_BLK_DEV_IDECS=m
    CONFIG_BLK_DEV_IDECD=y
    CONFIG_BLK_DEV_IDETAPE=m
    CONFIG_BLK_DEV_IDEFLOPPY=m
    CONFIG_BLK_DEV_IDESCSI=m
    # CONFIG_IDE_TASK_IOCTL is not set
    # IDE chipset support/bugfixes
    CONFIG_IDE_GENERIC=y
    CONFIG_BLK_DEV_CMD640=y
    CONFIG_BLK_DEV_CMD640_ENHANCED=y
    # CONFIG_BLK_DEV_IDEPNP is not set
    CONFIG_BLK_DEV_IDEPCI=y
    CONFIG_IDEPCI_SHARE_IRQ=y
    # CONFIG_BLK_DEV_OFFBOARD is not set
    CONFIG_BLK_DEV_GENERIC=y
    # CONFIG_BLK_DEV_OPTI621 is not set
    CONFIG_BLK_DEV_RZ1000=y
    CONFIG_BLK_DEV_IDEDMA_PCI=y
    # CONFIG_BLK_DEV_IDEDMA_FORCED is not set
    CONFIG_IDEDMA_PCI_AUTO=y
    # CONFIG_IDEDMA_ONLYDISK is not set
    CONFIG_BLK_DEV_AEC62XX=y
    CONFIG_BLK_DEV_ALI15X3=y
    # CONFIG_WDC_ALI15X3 is not set
    CONFIG_BLK_DEV_AMD74XX=y
    CONFIG_BLK_DEV_ATIIXP=y
    CONFIG_BLK_DEV_CMD64X=y
    CONFIG_BLK_DEV_TRIFLEX=y
    CONFIG_BLK_DEV_CY82C693=y
    # CONFIG_BLK_DEV_CS5520 is not set
    CONFIG_BLK_DEV_CS5530=y
    CONFIG_BLK_DEV_HPT34X=y
    # CONFIG_HPT34X_AUTODMA is not set
    CONFIG_BLK_DEV_HPT366=y
    CONFIG_BLK_DEV_SC1200=y
    CONFIG_BLK_DEV_PIIX=y
    CONFIG_BLK_DEV_NS87415=y
    CONFIG_BLK_DEV_PDC202XX_OLD=y
    CONFIG_PDC202XX_BURST=y
    CONFIG_BLK_DEV_PDC202XX_NEW=y
    CONFIG_PDC202XX_FORCE=y
    CONFIG_BLK_DEV_SVWKS=y
    CONFIG_BLK_DEV_SIIMAGE=y
    CONFIG_BLK_DEV_SIS5513=y
    CONFIG_BLK_DEV_SLC90E66=y
    CONFIG_BLK_DEV_TRM290=y
    CONFIG_BLK_DEV_VIA82CXXX=y
    # CONFIG_IDE_ARM is not set
    # CONFIG_IDE_CHIPSETS is not set
    CONFIG_BLK_DEV_IDEDMA=y
    # CONFIG_IDEDMA_IVB is not set
    CONFIG_IDEDMA_AUTO=y
    # CONFIG_BLK_DEV_HD is not set
    # SCSI device support
    CONFIG_SCSI=y
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    CONFIG_CHR_DEV_ST=m
    CONFIG_CHR_DEV_OSST=m
    CONFIG_BLK_DEV_SR=m
    CONFIG_BLK_DEV_SR_VENDOR=y
    CONFIG_CHR_DEV_SG=m
    # CONFIG_CHR_DEV_SCH is not set
    # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
    CONFIG_SCSI_MULTI_LUN=y
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # SCSI Transport Attributes
    CONFIG_SCSI_SPI_ATTRS=m
    # CONFIG_SCSI_FC_ATTRS is not set
    # CONFIG_SCSI_ISCSI_ATTRS is not set
    # SCSI low-level drivers
    # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
    # CONFIG_SCSI_3W_9XXX is not set
    # CONFIG_SCSI_7000FASST is not set
    # CONFIG_SCSI_ACARD is not set
    CONFIG_SCSI_AHA152X=m
    CONFIG_SCSI_AHA1542=m
    # CONFIG_SCSI_AACRAID is not set
    CONFIG_SCSI_AIC7XXX=m
    CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
    CONFIG_AIC7XXX_RESET_DELAY_MS=15000
    CONFIG_AIC7XXX_DEBUG_ENABLE=y
    CONFIG_AIC7XXX_DEBUG_MASK=0
    CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
    # CONFIG_SCSI_AIC7XXX_OLD is not set
    CONFIG_SCSI_AIC79XX=m
    CONFIG_AIC79XX_CMDS_PER_DEVICE=32
    CONFIG_AIC79XX_RESET_DELAY_MS=15000
    # CONFIG_AIC79XX_ENABLE_RD_STRM is not set
    CONFIG_AIC79XX_DEBUG_ENABLE=y
    CONFIG_AIC79XX_DEBUG_MASK=0
    CONFIG_AIC79XX_REG_PRETTY_PRINT=y
    # CONFIG_SCSI_DPT_I2O is not set
    CONFIG_SCSI_ADVANSYS=m
    # CONFIG_SCSI_IN2000 is not set
    # CONFIG_MEGARAID_NEWGEN is not set
    # CONFIG_MEGARAID_LEGACY is not set
    CONFIG_SCSI_SATA=y
    CONFIG_SCSI_SATA_AHCI=y
    CONFIG_SCSI_SATA_SVW=y
    CONFIG_SCSI_ATA_PIIX=y
    CONFIG_SCSI_SATA_NV=y
    CONFIG_SCSI_SATA_PROMISE=y
    CONFIG_SCSI_SATA_QSTOR=y
    CONFIG_SCSI_SATA_SX4=y
    CONFIG_SCSI_SATA_SIL=y
    CONFIG_SCSI_SATA_SIS=y
    CONFIG_SCSI_SATA_ULI=y
    CONFIG_SCSI_SATA_VIA=y
    CONFIG_SCSI_SATA_VITESSE=y
    # CONFIG_SCSI_BUSLOGIC is not set
    # CONFIG_SCSI_CPQFCTS is not set
    # CONFIG_SCSI_DMX3191D is not set
    # CONFIG_SCSI_DTC3280 is not set
    # CONFIG_SCSI_EATA is not set
    # CONFIG_SCSI_EATA_PIO is not set
    # CONFIG_SCSI_FUTURE_DOMAIN is not set
    # CONFIG_SCSI_GDTH is not set
    # CONFIG_SCSI_GENERIC_NCR5380 is not set
    # CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set
    # CONFIG_SCSI_IPS is not set
    # CONFIG_SCSI_INITIO is not set
    # CONFIG_SCSI_INIA100 is not set
    # CONFIG_SCSI_PPA is not set
    # CONFIG_SCSI_IMM is not set
    # CONFIG_SCSI_NCR53C406A is not set
    # CONFIG_SCSI_SYM53C8XX_2 is not set
    # CONFIG_SCSI_IPR is not set
    # CONFIG_SCSI_PAS16 is not set
    # CONFIG_SCSI_PCI2000 is not set
    # CONFIG_SCSI_PCI2220I is not set
    # CONFIG_SCSI_PSI240I is not set
    # CONFIG_SCSI_QLOGIC_FAS is not set
    # CONFIG_SCSI_QLOGIC_ISP is not set
    # CONFIG_SCSI_QLOGIC_FC is not set
    # CONFIG_SCSI_QLOGIC_1280 is not set
    CONFIG_SCSI_QLA2XXX=y
    # CONFIG_SCSI_QLA21XX is not set
    # CONFIG_SCSI_QLA22XX is not set
    # CONFIG_SCSI_QLA2300 is not set
    # CONFIG_SCSI_QLA2322 is not set
    # CONFIG_SCSI_QLA6312 is not set
    # CONFIG_SCSI_LPFC is not set
    # CONFIG_SCSI_SEAGATE is not set
    # CONFIG_SCSI_SYM53C416 is not set
    # CONFIG_SCSI_DC395x is not set
    # CONFIG_SCSI_DC390T is not set
    # CONFIG_SCSI_T128 is not set
    # CONFIG_SCSI_U14_34F is not set
    # CONFIG_SCSI_ULTRASTOR is not set
    # CONFIG_SCSI_NSP32 is not set
    # CONFIG_SCSI_DEBUG is not set
    # PCMCIA SCSI adapter support
    CONFIG_PCMCIA_AHA152X=m
    CONFIG_PCMCIA_FDOMAIN=m
    CONFIG_PCMCIA_NINJA_SCSI=m
    CONFIG_PCMCIA_QLOGIC=m
    CONFIG_PCMCIA_SYM53C500=m
    # Old CD-ROM drivers (not SCSI, not IDE)
    # CONFIG_CD_NO_IDESCSI is not set
    # Multi-device support (RAID and LVM)
    CONFIG_MD=y
    CONFIG_BLK_DEV_MD=y
    CONFIG_MD_LINEAR=y
    CONFIG_MD_RAID0=y
    CONFIG_MD_RAID1=y
    CONFIG_MD_RAID10=y
    CONFIG_MD_RAID5=y
    CONFIG_MD_RAID6=y
    CONFIG_MD_MULTIPATH=y
    # CONFIG_MD_FAULTY is not set
    CONFIG_BLK_DEV_DM=y
    CONFIG_DM_CRYPT=y
    CONFIG_DM_SNAPSHOT=y
    CONFIG_DM_MIRROR=y
    CONFIG_DM_ZERO=y
    # CONFIG_DM_MULTIPATH is not set
    # Fusion MPT device support
    # CONFIG_FUSION is not set
    # IEEE 1394 (FireWire) support
    CONFIG_IEEE1394=m
    # Subsystem Options
    # CONFIG_IEEE1394_VERBOSEDEBUG is not set
    # CONFIG_IEEE1394_OUI_DB is not set
    CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y
    CONFIG_IEEE1394_CONFIG_ROM_IP1394=y
    # Device Drivers
    CONFIG_IEEE1394_PCILYNX=m
    CONFIG_IEEE1394_OHCI1394=m
    # Protocol Drivers
    CONFIG_IEEE1394_VIDEO1394=m
    CONFIG_IEEE1394_SBP2=m
    # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
    CONFIG_IEEE1394_ETH1394=m
    CONFIG_IEEE1394_DV1394=m
    CONFIG_IEEE1394_RAWIO=m
    CONFIG_IEEE1394_CMP=m
    CONFIG_IEEE1394_AMDTP=m
    # I2O device support
    CONFIG_I2O=m
    CONFIG_I2O_CONFIG=m
    CONFIG_I2O_BLOCK=m
    CONFIG_I2O_SCSI=m
    CONFIG_I2O_PROC=m
    # Networking support
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    CONFIG_PACKET_MMAP=y
    CONFIG_UNIX=y
    CONFIG_NET_KEY=m
    CONFIG_INET=y
    CONFIG_IP_MULTICAST=y
    # CONFIG_IP_ADVANCED_ROUTER is not set
    # CONFIG_IP_PNP is not set
    CONFIG_NET_IPIP=m
    CONFIG_NET_IPGRE=m
    # CONFIG_NET_IPGRE_BROADCAST is not set
    # CONFIG_IP_MROUTE is not set
    # CONFIG_ARPD is not set
    CONFIG_SYN_COOKIES=y
    CONFIG_INET_AH=m
    CONFIG_INET_ESP=m
    CONFIG_INET_IPCOMP=m
    CONFIG_INET_TUNNEL=m
    CONFIG_IP_TCPDIAG=y
    CONFIG_IP_TCPDIAG_IPV6=y
    # IP: Virtual Server Configuration
    CONFIG_IP_VS=m
    # CONFIG_IP_VS_DEBUG is not set
    CONFIG_IP_VS_TAB_BITS=12
    # IPVS transport protocol load balancing support
    CONFIG_IP_VS_PROTO_TCP=y
    CONFIG_IP_VS_PROTO_UDP=y
    CONFIG_IP_VS_PROTO_ESP=y
    CONFIG_IP_VS_PROTO_AH=y
    # IPVS scheduler
    CONFIG_IP_VS_RR=m
    CONFIG_IP_VS_WRR=m
    CONFIG_IP_VS_LC=m
    CONFIG_IP_VS_WLC=m
    CONFIG_IP_VS_LBLC=m
    CONFIG_IP_VS_LBLCR=m
    CONFIG_IP_VS_DH=m
    CONFIG_IP_VS_SH=m
    CONFIG_IP_VS_SED=m
    CONFIG_IP_VS_NQ=m
    # IPVS application helper
    CONFIG_IP_VS_FTP=m
    CONFIG_IPV6=y
    CONFIG_IPV6_PRIVACY=y
    CONFIG_INET6_AH=m
    CONFIG_INET6_ESP=m
    CONFIG_INET6_IPCOMP=m
    CONFIG_INET6_TUNNEL=m
    CONFIG_IPV6_TUNNEL=m
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    CONFIG_BRIDGE_NETFILTER=y
    # IP: Netfilter Configuration
    CONFIG_IP_NF_CONNTRACK=m
    # CONFIG_IP_NF_CT_ACCT is not set
    # CONFIG_IP_NF_CONNTRACK_MARK is not set
    # CONFIG_IP_NF_CT_PROTO_SCTP is not set
    CONFIG_IP_NF_FTP=m
    CONFIG_IP_NF_IRC=m
    CONFIG_IP_NF_TFTP=m
    CONFIG_IP_NF_AMANDA=m
    CONFIG_IP_NF_QUEUE=m
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP_NF_MATCH_LIMIT=m
    CONFIG_IP_NF_MATCH_IPRANGE=m
    CONFIG_IP_NF_MATCH_MAC=m
    CONFIG_IP_NF_MATCH_PKTTYPE=m
    CONFIG_IP_NF_MATCH_MARK=m
    CONFIG_IP_NF_MATCH_MULTIPORT=m
    CONFIG_IP_NF_MATCH_TOS=m
    CONFIG_IP_NF_MATCH_RECENT=m
    CONFIG_IP_NF_MATCH_ECN=m
    CONFIG_IP_NF_MATCH_DSCP=m
    CONFIG_IP_NF_MATCH_AH_ESP=m
    CONFIG_IP_NF_MATCH_LENGTH=m
    CONFIG_IP_NF_MATCH_TTL=m
    CONFIG_IP_NF_MATCH_TCPMSS=m
    CONFIG_IP_NF_MATCH_HELPER=m
    CONFIG_IP_NF_MATCH_STATE=m
    CONFIG_IP_NF_MATCH_CONNTRACK=m
    CONFIG_IP_NF_MATCH_OWNER=m
    CONFIG_IP_NF_MATCH_PHYSDEV=m
    CONFIG_IP_NF_MATCH_ADDRTYPE=m
    CONFIG_IP_NF_MATCH_REALM=m
    CONFIG_IP_NF_MATCH_SCTP=m
    CONFIG_IP_NF_MATCH_COMMENT=m
    # CONFIG_IP_NF_MATCH_HASHLIMIT is not set
    CONFIG_IP_NF_FILTER=m
    CONFIG_IP_NF_TARGET_REJECT=m
    CONFIG_IP_NF_TARGET_LOG=m
    CONFIG_IP_NF_TARGET_ULOG=m
    CONFIG_IP_NF_TARGET_TCPMSS=m
    CONFIG_IP_NF_NAT=m
    CONFIG_IP_NF_NAT_NEEDED=y
    CONFIG_IP_NF_TARGET_MASQUERADE=m
    CONFIG_IP_NF_TARGET_REDIRECT=m
    CONFIG_IP_NF_TARGET_NETMAP=m
    CONFIG_IP_NF_TARGET_SAME=m
    CONFIG_IP_NF_NAT_SNMP_BASIC=m
    CONFIG_IP_NF_NAT_IRC=m
    CONFIG_IP_NF_NAT_FTP=m
    CONFIG_IP_NF_NAT_TFTP=m
    CONFIG_IP_NF_NAT_AMANDA=m
    CONFIG_IP_NF_MANGLE=m
    CONFIG_IP_NF_TARGET_TOS=m
    CONFIG_IP_NF_TARGET_ECN=m
    CONFIG_IP_NF_TARGET_DSCP=m
    CONFIG_IP_NF_TARGET_MARK=m
    CONFIG_IP_NF_TARGET_CLASSIFY=m
    CONFIG_IP_NF_RAW=m
    CONFIG_IP_NF_TARGET_NOTRACK=m
    CONFIG_IP_NF_ARPTABLES=m
    CONFIG_IP_NF_ARPFILTER=m
    CONFIG_IP_NF_ARP_MANGLE=m
    # IPv6: Netfilter Configuration (EXPERIMENTAL)
    CONFIG_IP6_NF_QUEUE=m
    CONFIG_IP6_NF_IPTABLES=m
    CONFIG_IP6_NF_MATCH_LIMIT=m
    CONFIG_IP6_NF_MATCH_MAC=m
    CONFIG_IP6_NF_MATCH_RT=m
    CONFIG_IP6_NF_MATCH_OPTS=m
    CONFIG_IP6_NF_MATCH_FRAG=m
    CONFIG_IP6_NF_MATCH_HL=m
    CONFIG_IP6_NF_MATCH_MULTIPORT=m
    CONFIG_IP6_NF_MATCH_OWNER=m
    CONFIG_IP6_NF_MATCH_MARK=m
    CONFIG_IP6_NF_MATCH_IPV6HEADER=m
    CONFIG_IP6_NF_MATCH_AHESP=m
    CONFIG_IP6_NF_MATCH_LENGTH=m
    CONFIG_IP6_NF_MATCH_EUI64=m
    CONFIG_IP6_NF_MATCH_PHYSDEV=m
    CONFIG_IP6_NF_FILTER=m
    CONFIG_IP6_NF_TARGET_LOG=m
    CONFIG_IP6_NF_MANGLE=m
    CONFIG_IP6_NF_TARGET_MARK=m
    CONFIG_IP6_NF_RAW=m
    # Bridge: Netfilter Configuration
    CONFIG_BRIDGE_NF_EBTABLES=m
    CONFIG_BRIDGE_EBT_BROUTE=m
    CONFIG_BRIDGE_EBT_T_FILTER=m
    CONFIG_BRIDGE_EBT_T_NAT=m
    CONFIG_BRIDGE_EBT_802_3=m
    CONFIG_BRIDGE_EBT_AMONG=m
    CONFIG_BRIDGE_EBT_ARP=m
    CONFIG_BRIDGE_EBT_IP=m
    CONFIG_BRIDGE_EBT_LIMIT=m
    CONFIG_BRIDGE_EBT_MARK=m
    CONFIG_BRIDGE_EBT_PKTTYPE=m
    CONFIG_BRIDGE_EBT_STP=m
    CONFIG_BRIDGE_EBT_VLAN=m
    CONFIG_BRIDGE_EBT_ARPREPLY=m
    CONFIG_BRIDGE_EBT_DNAT=m
    CONFIG_BRIDGE_EBT_MARK_T=m
    CONFIG_BRIDGE_EBT_REDIRECT=m
    CONFIG_BRIDGE_EBT_SNAT=m
    CONFIG_BRIDGE_EBT_LOG=m
    # CONFIG_BRIDGE_EBT_ULOG is not set
    CONFIG_XFRM=y
    CONFIG_XFRM_USER=m
    # SCTP Configuration (EXPERIMENTAL)
    CONFIG_IP_SCTP=m
    # CONFIG_SCTP_DBG_MSG is not set
    # CONFIG_SCTP_DBG_OBJCNT is not set
    # CONFIG_SCTP_HMAC_NONE is not set
    CONFIG_SCTP_HMAC_SHA1=y
    # CONFIG_SCTP_HMAC_MD5 is not set
    CONFIG_ATM=m
    CONFIG_ATM_CLIP=m
    # CONFIG_ATM_CLIP_NO_ICMP is not set
    CONFIG_ATM_LANE=m
    CONFIG_ATM_MPOA=m
    CONFIG_ATM_BR2684=m
    # CONFIG_ATM_BR2684_IPFILTER is not set
    CONFIG_BRIDGE=m
    CONFIG_VLAN_8021Q=m
    # CONFIG_DECNET is not set
    CONFIG_LLC=m
    CONFIG_LLC2=m
    CONFIG_IPX=m
    # CONFIG_IPX_INTERN is not set
    CONFIG_ATALK=m
    # CONFIG_DEV_APPLETALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    # CONFIG_NET_DIVERT is not set
    # CONFIG_ECONET is not set
    # CONFIG_WAN_ROUTER is not set
    # QoS and/or fair queueing
    CONFIG_NET_SCHED=y
    CONFIG_NET_SCH_CLK_JIFFIES=y
    # CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set
    # CONFIG_NET_SCH_CLK_CPU is not set
    CONFIG_NET_SCH_CBQ=m
    CONFIG_NET_SCH_HTB=m
    CONFIG_NET_SCH_HFSC=m
    CONFIG_NET_SCH_ATM=m
    CONFIG_NET_SCH_PRIO=m
    CONFIG_NET_SCH_RED=m
    CONFIG_NET_SCH_SFQ=m
    CONFIG_NET_SCH_TEQL=m
    CONFIG_NET_SCH_TBF=m
    CONFIG_NET_SCH_GRED=m
    CONFIG_NET_SCH_DSMARK=m
    CONFIG_NET_SCH_NETEM=m
    CONFIG_NET_SCH_INGRESS=m
    CONFIG_NET_QOS=y
    CONFIG_NET_ESTIMATOR=y
    CONFIG_NET_CLS=y
    # CONFIG_NET_CLS_BASIC is not set
    CONFIG_NET_CLS_TCINDEX=m
    CONFIG_NET_CLS_ROUTE4=m
    CONFIG_NET_CLS_ROUTE=y
    CONFIG_NET_CLS_FW=m
    CONFIG_NET_CLS_U32=m
    # CONFIG_CLS_U32_PERF is not set
    # CONFIG_NET_CLS_IND is not set
    # CONFIG_CLS_U32_MARK is not set
    CONFIG_NET_CLS_RSVP=m
    CONFIG_NET_CLS_RSVP6=m
    # CONFIG_NET_EMATCH is not set
    # CONFIG_NET_CLS_ACT is not set
    CONFIG_NET_CLS_POLICE=y
    # Network testing
    CONFIG_NET_PKTGEN=m
    CONFIG_NETPOLL=y
    # CONFIG_NETPOLL_RX is not set
    # CONFIG_NETPOLL_TRAP is not set
    CONFIG_NET_POLL_CONTROLLER=y
    # CONFIG_HAMRADIO is not set
    CONFIG_IRDA=m
    # IrDA protocols
    CONFIG_IRLAN=m
    CONFIG_IRNET=m
    CONFIG_IRCOMM=m
    CONFIG_IRDA_ULTRA=y
    # IrDA options
    CONFIG_IRDA_CACHE_LAST_LSAP=y
    CONFIG_IRDA_FAST_RR=y
    # CONFIG_IRDA_DEBUG is not set
    # Infrared-port device drivers
    # SIR device drivers
    CONFIG_IRTTY_SIR=m
    # Dongle support
    CONFIG_DONGLE=y
    CONFIG_ESI_DONGLE=m
    CONFIG_ACTISYS_DONGLE=m
    CONFIG_TEKRAM_DONGLE=m
    CONFIG_LITELINK_DONGLE=m
    CONFIG_MA600_DONGLE=m
    CONFIG_GIRBIL_DONGLE=m
    CONFIG_MCP2120_DONGLE=m
    CONFIG_OLD_BELKIN_DONGLE=m
    CONFIG_ACT200L_DONGLE=m
    # Old SIR device drivers
    CONFIG_IRPORT_SIR=m
    # Old Serial dongle support
    CONFIG_DONGLE_OLD=y
    CONFIG_ESI_DONGLE_OLD=m
    CONFIG_ACTISYS_DONGLE_OLD=m
    CONFIG_TEKRAM_DONGLE_OLD=m
    CONFIG_GIRBIL_DONGLE_OLD=m
    CONFIG_LITELINK_DONGLE_OLD=m
    CONFIG_MCP2120_DONGLE_OLD=m
    CONFIG_OLD_BELKIN_DONGLE_OLD=m
    CONFIG_ACT200L_DONGLE_OLD=m
    CONFIG_MA600_DONGLE_OLD=m
    # FIR device drivers
    CONFIG_USB_IRDA=m
    CONFIG_SIGMATEL_FIR=m
    CONFIG_NSC_FIR=m
    CONFIG_WINBOND_FIR=m
    CONFIG_TOSHIBA_FIR=m
    CONFIG_SMC_IRCC_FIR=m
    CONFIG_ALI_FIR=m
    CONFIG_VLSI_FIR=m
    CONFIG_VIA_FIR=m
    CONFIG_BT=m
    CONFIG_BT_L2CAP=m
    CONFIG_BT_SCO=m
    CONFIG_BT_RFCOMM=m
    CONFIG_BT_RFCOMM_TTY=y
    CONFIG_BT_BNEP=m
    # CONFIG_BT_BNEP_MC_FILTER is not set
    # CONFIG_BT_BNEP_PROTO_FILTER is not set
    CONFIG_BT_CMTP=m
    CONFIG_BT_HIDP=m
    # Bluetooth device drivers
    CONFIG_BT_HCIUSB=m
    CONFIG_BT_HCIUSB_SCO=y
    CONFIG_BT_HCIUART=m
    CONFIG_BT_HCIUART_H4=y
    CONFIG_BT_HCIUART_BCSP=y
    CONFIG_BT_HCIUART_BCSP_TXCRC=y
    CONFIG_BT_HCIBCM203X=m
    # CONFIG_BT_HCIBPA10X is not set
    CONFIG_BT_HCIBFUSB=m
    CONFIG_BT_HCIDTL1=m
    CONFIG_BT_HCIBT3C=m
    CONFIG_BT_HCIBLUECARD=m
    CONFIG_BT_HCIBTUART=m
    CONFIG_BT_HCIVHCI=m
    CONFIG_NETDEVICES=y
    CONFIG_DUMMY=m
    CONFIG_BONDING=m
    CONFIG_EQUALIZER=m
    CONFIG_TUN=m
    # CONFIG_NET_SB1000 is not set
    # ARCnet devices
    # CONFIG_ARCNET is not set
    # Ethernet (10 or 100Mbit)
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=m
    CONFIG_HAPPYMEAL=m
    CONFIG_SUNGEM=m
    CONFIG_NET_VENDOR_3COM=y
    CONFIG_EL1=m
    CONFIG_EL2=m
    CONFIG_ELPLUS=m
    CONFIG_EL16=m
    CONFIG_EL3=m
    CONFIG_3C515=m
    CONFIG_VORTEX=m
    CONFIG_TYPHOON=m
    CONFIG_LANCE=m
    CONFIG_NET_VENDOR_SMC=y
    CONFIG_WD80x3=m
    CONFIG_ULTRA=m
    CONFIG_SMC9194=m
    CONFIG_NET_VENDOR_RACAL=y
    CONFIG_NI5010=m
    CONFIG_NI52=m
    CONFIG_NI65=m
    # Tulip family network device support
    CONFIG_NET_TULIP=y
    CONFIG_DE2104X=m
    CONFIG_TULIP=m
    # CONFIG_TULIP_MWI is not set
    # CONFIG_TULIP_MMIO is not set
    # CONFIG_TULIP_NAPI is not set
    CONFIG_DE4X5=m
    CONFIG_WINBOND_840=m
    CONFIG_DM9102=m
    CONFIG_PCMCIA_XIRCOM=m
    # CONFIG_PCMCIA_XIRTULIP is not set
    CONFIG_AT1700=m
    CONFIG_DEPCA=m
    CONFIG_HP100=m
    CONFIG_NET_ISA=y
    CONFIG_E2100=m
    CONFIG_EWRK3=m
    CONFIG_EEXPRESS=m
    CONFIG_EEXPRESS_PRO=m
    CONFIG_HPLAN_PLUS=m
    CONFIG_HPLAN=m
    CONFIG_LP486E=m
    CONFIG_ETH16I=m
    CONFIG_NE2000=m
    CONFIG_ZNET=m
    CONFIG_SEEQ8005=m
    CONFIG_NET_PCI=y
    CONFIG_PCNET32=m
    CONFIG_AMD8111_ETH=m
    # CONFIG_AMD8111E_NAPI is not set
    CONFIG_ADAPTEC_STARFIRE=m
    # CONFIG_ADAPTEC_STARFIRE_NAPI is not set
    CONFIG_AC3200=m
    CONFIG_APRICOT=m
    CONFIG_B44=m
    CONFIG_FORCEDETH=m
    CONFIG_CS89x0=m
    CONFIG_DGRS=m
    CONFIG_EEPRO100=m
    CONFIG_E100=m
    CONFIG_FEALNX=m
    CONFIG_NATSEMI=m
    CONFIG_NE2K_PCI=m
    CONFIG_8139CP=m
    CONFIG_8139TOO=m
    # CONFIG_8139TOO_PIO is not set
    CONFIG_8139TOO_TUNE_TWISTER=y
    CONFIG_8139TOO_8129=y
    # CONFIG_8139_OLD_RX_RESET is not set
    CONFIG_SIS900=m
    CONFIG_EPIC100=m
    CONFIG_SUNDANCE=m
    # CONFIG_SUNDANCE_MMIO is not set
    CONFIG_TLAN=m
    CONFIG_VIA_RHINE=m
    # CONFIG_VIA_RHINE_MMIO is not set
    CONFIG_NET_POCKET=y
    CONFIG_ATP=m
    CONFIG_DE600=m
    CONFIG_DE620=m
    # Ethernet (1000 Mbit)
    CONFIG_ACENIC=m
    # CONFIG_ACENIC_OMIT_TIGON_I is not set
    CONFIG_DL2K=m
    CONFIG_E1000=m
    # CONFIG_E1000_NAPI is not set
    CONFIG_NS83820=m
    CONFIG_HAMACHI=m
    CONFIG_YELLOWFIN=m
    CONFIG_R8169=m
    # CONFIG_R8169_NAPI is not set
    # CONFIG_R8169_VLAN is not set
    CONFIG_SK98LIN=m
    CONFIG_VIA_VELOCITY=m
    CONFIG_TIGON3=m
    CONFIG_BNX2=m
    # Ethernet (10000 Mbit)
    CONFIG_IXGB=m
    # CONFIG_IXGB_NAPI is not set
    CONFIG_S2IO=m
    # CONFIG_S2IO_NAPI is not set
    # CONFIG_2BUFF_MODE is not set
    # Token Ring devices
    # CONFIG_TR is not set
    # Wireless LAN (non-hamradio)
    CONFIG_NET_RADIO=y
    # Obsolete Wireless cards support (pre-802.11)
    # CONFIG_STRIP is not set
    # CONFIG_ARLAN is not set
    # CONFIG_WAVELAN is not set
    # CONFIG_PCMCIA_WAVELAN is not set
    # CONFIG_PCMCIA_NETWAVE is not set
    # Wireless 802.11 Frequency Hopping cards support
    CONFIG_PCMCIA_RAYCS=m
    # Wireless 802.11b ISA/PCI cards support
    CONFIG_AIRO=m
    CONFIG_HERMES=m
    CONFIG_PLX_HERMES=m
    CONFIG_TMD_HERMES=m
    CONFIG_PCI_HERMES=m
    CONFIG_ATMEL=m
    CONFIG_PCI_ATMEL=m
    # Wireless 802.11b Pcmcia/Cardbus cards support
    CONFIG_PCMCIA_HERMES=m
    CONFIG_AIRO_CS=m
    CONFIG_PCMCIA_ATMEL=m
    CONFIG_PCMCIA_WL3501=m
    # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support
    CONFIG_PRISM54=m
    CONFIG_NET_WIRELESS=y
    # PCMCIA network device support
    CONFIG_NET_PCMCIA=y
    CONFIG_PCMCIA_3C589=m
    CONFIG_PCMCIA_3C574=m
    CONFIG_PCMCIA_FMVJ18X=m
    CONFIG_PCMCIA_PCNET=m
    CONFIG_PCMCIA_NMCLAN=m
    CONFIG_PCMCIA_SMC91C92=m
    CONFIG_PCMCIA_XIRC2PS=m
    CONFIG_PCMCIA_AXNET=m
    # Wan interfaces
    # CONFIG_WAN is not set
    # ATM drivers
    CONFIG_ATM_TCP=m
    CONFIG_ATM_LANAI=m
    CONFIG_ATM_ENI=m
    # CONFIG_ATM_ENI_DEBUG is not set
    # CONFIG_ATM_ENI_TUNE_BURST is not set
    CONFIG_ATM_FIRESTREAM=m
    CONFIG_ATM_ZATM=m
    # CONFIG_ATM_ZATM_DEBUG is not set
    CONFIG_ATM_NICSTAR=m
    # CONFIG_ATM_NICSTAR_USE_SUNI is not set
    # CONFIG_ATM_NICSTAR_USE_IDT77105 is not set
    CONFIG_ATM_IDT77252=m
    # CONFIG_ATM_IDT77252_DEBUG is not set
    # CONFIG_ATM_IDT77252_RCV_ALL is not set
    CONFIG_ATM_IDT77252_USE_SUNI=y
    CONFIG_ATM_AMBASSADOR=m
    # CONFIG_ATM_AMBASSADOR_DEBUG is not set
    CONFIG_ATM_HORIZON=m
    # CONFIG_ATM_HORIZON_DEBUG is not set
    CONFIG_ATM_IA=m
    # CONFIG_ATM_IA_DEBUG is not set
    CONFIG_ATM_FORE200E_MAYBE=m
    # CONFIG_ATM_FORE200E_PCA is not set
    CONFIG_ATM_HE=m
    # CONFIG_ATM_HE_USE_SUNI is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    CONFIG_PLIP=m
    CONFIG_PPP=m
    CONFIG_PPP_MULTILINK=y
    CONFIG_PPP_FILTER=y
    CONFIG_PPP_ASYNC=m
    CONFIG_PPP_SYNC_TTY=m
    CONFIG_PPP_DEFLATE=m
    CONFIG_PPP_BSDCOMP=m
    CONFIG_PPPOE=m
    CONFIG_PPPOATM=m
    CONFIG_SLIP=m
    # CONFIG_SLIP_COMPRESSED is not set
    # CONFIG_SLIP_SMART is not set
    # CONFIG_SLIP_MODE_SLIP6 is not set
    # CONFIG_NET_FC is not set
    CONFIG_SHAPER=m
    CONFIG_NETCONSOLE=m
    # ISDN subsystem
    CONFIG_ISDN=m
    # Old ISDN4Linux
    CONFIG_ISDN_I4L=m
    CONFIG_ISDN_PPP=y
    # CONFIG_ISDN_PPP_VJ is not set
    # CONFIG_ISDN_MPP is not set
    # CONFIG_IPPP_FILTER is not set
    CONFIG_ISDN_PPP_BSDCOMP=m
    CONFIG_ISDN_AUDIO=y
    CONFIG_ISDN_TTY_FAX=y
    # ISDN feature submodules
    # CONFIG_ISDN_DRV_LOOP is not set
    # CONFIG_ISDN_DIVERSION is not set
    # ISDN4Linux hardware drivers
    # Passive cards
    CONFIG_ISDN_DRV_HISAX=m
    # D-channel protocol features
    CONFIG_HISAX_EURO=y
    CONFIG_DE_AOC=y
    # CONFIG_HISAX_NO_SENDCOMPLETE is not set
    # CONFIG_HISAX_NO_LLC is not set
    # CONFIG_HISAX_NO_KEYPAD is not set
    CONFIG_HISAX_1TR6=y
    CONFIG_HISAX_NI1=y
    CONFIG_HISAX_MAX_CARDS=8
    # HiSax supported cards
    CONFIG_HISAX_16_0=y
    CONFIG_HISAX_16_3=y
    CONFIG_HISAX_TELESPCI=y
    CONFIG_HISAX_S0BOX=y
    CONFIG_HISAX_AVM_A1=y
    CONFIG_HISAX_FRITZPCI=y
    CONFIG_HISAX_AVM_A1_PCMCIA=y
    CONFIG_HISAX_ELSA=y
    CONFIG_HISAX_IX1MICROR2=y
    CONFIG_HISAX_DIEHLDIVA=y
    CONFIG_HISAX_ASUSCOM=y
    CONFIG_HISAX_TELEINT=y
    CONFIG_HISAX_HFCS=y
    CONFIG_HISAX_SEDLBAUER=y
    CONFIG_HISAX_SPORTSTER=y
    CONFIG_HISAX_MIC=y
    CONFIG_HISAX_NETJET=y
    CONFIG_HISAX_NETJET_U=y
    CONFIG_HISAX_NICCY=y
    CONFIG_HISAX_ISURF=y
    CONFIG_HISAX_HSTSAPHIR=y
    CONFIG_HISAX_BKM_A4T=y
    CONFIG_HISAX_SCT_QUADRO=y
    CONFIG_HISAX_GAZEL=y
    CONFIG_HISAX_HFC_PCI=y
    CONFIG_HISAX_W6692=y
    CONFIG_HISAX_HFC_SX=y
    CONFIG_HISAX_ENTERNOW_PCI=y
    # CONFIG_HISAX_DEBUG is not set
    # HiSax PCMCIA card service modules
    CONFIG_HISAX_SEDLBAUER_CS=m
    CONFIG_HISAX_ELSA_CS=m
    CONFIG_HISAX_AVM_A1_CS=m
    CONFIG_HISAX_TELES_CS=m
    # HiSax sub driver modules
    CONFIG_HISAX_ST5481=m
    CONFIG_HISAX_HFCUSB=m
    # CONFIG_HISAX_HFC4S8S is not set
    CONFIG_HISAX_FRITZ_PCIPNP=m
    CONFIG_HISAX_HDLC=y
    # Active cards
    CONFIG_ISDN_DRV_ICN=m
    CONFIG_ISDN_DRV_PCBIT=m
    CONFIG_ISDN_DRV_SC=m
    CONFIG_ISDN_DRV_ACT2000=m
    CONFIG_HYSDN=m
    CONFIG_HYSDN_CAPI=y
    # CAPI subsystem
    CONFIG_ISDN_CAPI=m
    CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
    CONFIG_ISDN_CAPI_MIDDLEWARE=y
    CONFIG_ISDN_CAPI_CAPI20=m
    CONFIG_ISDN_CAPI_CAPIFS_BOOL=y
    CONFIG_ISDN_CAPI_CAPIFS=m
    CONFIG_ISDN_CAPI_CAPIDRV=m
    # CAPI hardware drivers
    # Active AVM cards
    CONFIG_CAPI_AVM=y
    CONFIG_ISDN_DRV_AVMB1_B1ISA=m
    CONFIG_ISDN_DRV_AVMB1_B1PCI=m
    CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
    CONFIG_ISDN_DRV_AVMB1_T1ISA=m
    CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m
    CONFIG_ISDN_DRV_AVMB1_AVM_CS=m
    CONFIG_ISDN_DRV_AVMB1_T1PCI=m
    CONFIG_ISDN_DRV_AVMB1_C4=m
    # Active Eicon DIVA Server cards
    CONFIG_CAPI_EICON=y
    CONFIG_ISDN_DIVAS=m
    CONFIG_ISDN_DIVAS_BRIPCI=y
    CONFIG_ISDN_DIVAS_PRIPCI=y
    CONFIG_ISDN_DIVAS_DIVACAPI=m
    CONFIG_ISDN_DIVAS_USERIDI=m
    CONFIG_ISDN_DIVAS_MAINT=m
    # Telephony Support
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    # Userland interfaces
    CONFIG_INPUT_MOUSEDEV=y
    CONFIG_INPUT_MOUSEDEV_PSAUX=y
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
    CONFIG_INPUT_JOYDEV=m
    CONFIG_INPUT_TSDEV=m
    CONFIG_INPUT_TSDEV_SCREEN_X=240
    CONFIG_INPUT_TSDEV_SCREEN_Y=320
    CONFIG_INPUT_EVDEV=m
    # CONFIG_INPUT_EVBUG is not set
    # Input Device Drivers
    CONFIG_INPUT_KEYBOARD=y
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_LKKBD is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    CONFIG_INPUT_MOUSE=y
    CONFIG_MOUSE_PS2=y
    # CONFIG_MOUSE_SERIAL is not set
    # CONFIG_MOUSE_INPORT is not set
    # CONFIG_MOUSE_LOGIBM is not set
    # CONFIG_MOUSE_PC110PAD is not set
    # CONFIG_MOUSE_VSXXXAA is not set
    CONFIG_INPUT_JOYSTICK=y
    CONFIG_JOYSTICK_ANALOG=m
    CONFIG_JOYSTICK_A3D=m
    CONFIG_JOYSTICK_ADI=m
    CONFIG_JOYSTICK_COBRA=m
    CONFIG_JOYSTICK_GF2K=m
    CONFIG_JOYSTICK_GRIP=m
    CONFIG_JOYSTICK_GRIP_MP=m
    CONFIG_JOYSTICK_GUILLEMOT=m
    CONFIG_JOYSTICK_INTERACT=m
    CONFIG_JOYSTICK_SIDEWINDER=m
    CONFIG_JOYSTICK_TMDC=m
    CONFIG_JOYSTICK_IFORCE=m
    CONFIG_JOYSTICK_IFORCE_USB=y
    CONFIG_JOYSTICK_IFORCE_232=y
    CONFIG_JOYSTICK_WARRIOR=m
    CONFIG_JOYSTICK_MAGELLAN=m
    CONFIG_JOYSTICK_SPACEORB=m
    CONFIG_JOYSTICK_SPACEBALL=m
    CONFIG_JOYSTICK_STINGER=m
    CONFIG_JOYSTICK_TWIDJOY=m
    CONFIG_JOYSTICK_DB9=m
    CONFIG_JOYSTICK_GAMECON=m
    CONFIG_JOYSTICK_TURBOGRAFX=m
    # CONFIG_JOYSTICK_JOYDUMP is not set
    CONFIG_INPUT_TOUCHSCREEN=y
    CONFIG_TOUCHSCREEN_GUNZE=m
    CONFIG_TOUCHSCREEN_ELO=m
    CONFIG_TOUCHSCREEN_MTOUCH=m
    CONFIG_TOUCHSCREEN_MK712=m
    CONFIG_INPUT_MISC=y
    CONFIG_INPUT_PCSPKR=m
    CONFIG_INPUT_UINPUT=m
    # Hardware I/O ports
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    CONFIG_SERIO_SERPORT=m
    CONFIG_SERIO_CT82C710=m
    CONFIG_SERIO_PARKBD=m
    CONFIG_SERIO_PCIPS2=m
    CONFIG_SERIO_LIBPS2=y
    # CONFIG_SERIO_RAW is not set
    CONFIG_GAMEPORT=m
    CONFIG_GAMEPORT_NS558=m
    CONFIG_GAMEPORT_L4=m
    CONFIG_GAMEPORT_EMU10K1=m
    CONFIG_GAMEPORT_VORTEX=m
    CONFIG_GAMEPORT_FM801=m
    CONFIG_GAMEPORT_CS461X=m
    # Character devices
    CONFIG_VT=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    CONFIG_SERIAL_NONSTANDARD=y
    # CONFIG_COMPUTONE is not set
    CONFIG_ROCKETPORT=m
    CONFIG_CYCLADES=m
    # CONFIG_CYZ_INTR is not set
    # CONFIG_DIGIEPCA is not set
    # CONFIG_ESPSERIAL is not set
    # CONFIG_MOXA_INTELLIO is not set
    # CONFIG_MOXA_SMARTIO is not set
    # CONFIG_ISI is not set
    CONFIG_SYNCLINK=m
    CONFIG_SYNCLINKMP=m
    CONFIG_N_HDLC=m
    # CONFIG_RISCOM8 is not set
    # CONFIG_SPECIALIX is not set
    # CONFIG_SX is not set
    # CONFIG_RIO is not set
    # CONFIG_STALDRV is not set
    # Serial drivers
    CONFIG_SERIAL_8250=y
    CONFIG_SERIAL_8250_CONSOLE=y
    CONFIG_SERIAL_8250_CS=m
    # CONFIG_SERIAL_8250_ACPI is not set
    CONFIG_SERIAL_8250_NR_UARTS=4
    # CONFIG_SERIAL_8250_EXTENDED is not set
    # Non-8250 serial port support
    CONFIG_SERIAL_CORE=y
    CONFIG_SERIAL_CORE_CONSOLE=y
    # CONFIG_SERIAL_JSM is not set
    CONFIG_UNIX98_PTYS=y
    CONFIG_LEGACY_PTYS=y
    CONFIG_LEGACY_PTY_COUNT=256
    CONFIG_PRINTER=m
    # CONFIG_LP_CONSOLE is not set
    CONFIG_PPDEV=m
    # CONFIG_TIPAR is not set
    # IPMI
    CONFIG_IPMI_HANDLER=m
    # CONFIG_IPMI_PANIC_EVENT is not set
    CONFIG_IPMI_DEVICE_INTERFACE=m
    CONFIG_IPMI_SI=m
    CONFIG_IPMI_WATCHDOG=m
    CONFIG_IPMI_POWEROFF=m
    # Watchdog Cards
    # CONFIG_WATCHDOG is not set
    CONFIG_HW_RANDOM=m
    CONFIG_NVRAM=m
    CONFIG_RTC=m
    CONFIG_GEN_RTC=m
    # CONFIG_GEN_RTC_X is not set
    CONFIG_DTLK=m
    CONFIG_R3964=m
    CONFIG_APPLICOM=m
    CONFIG_SONYPI=m
    # Ftape, the floppy tape device driver
    # CONFIG_FTAPE is not set
    CONFIG_AGP=m
    CONFIG_AGP_ALI=m
    CONFIG_AGP_ATI=m
    CONFIG_AGP_AMD=m
    CONFIG_AGP_AMD64=m
    CONFIG_AGP_INTEL=m
    CONFIG_AGP_NVIDIA=m
    CONFIG_AGP_SIS=m
    CONFIG_AGP_SWORKS=m
    CONFIG_AGP_VIA=m
    CONFIG_AGP_EFFICEON=m
    CONFIG_DRM=m
    CONFIG_DRM_TDFX=m
    # CONFIG_DRM_GAMMA is not set
    CONFIG_DRM_R128=m
    CONFIG_DRM_RADEON=m
    CONFIG_DRM_I810=m
    CONFIG_DRM_I830=m
    CONFIG_DRM_I915=m
    CONFIG_DRM_MGA=m
    CONFIG_DRM_SIS=m
    # PCMCIA character devices
    CONFIG_SYNCLINK_CS=m
    CONFIG_MWAVE=m
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_HPET is not set
    CONFIG_HANGCHECK_TIMER=m
    # TPM devices
    CONFIG_TCG_TPM=m
    CONFIG_TCG_NSC=m
    CONFIG_TCG_ATMEL=m
    # Linux InfraRed Controller
    # CONFIG_LIRC_SUPPORT is not set
    # I2C support
    CONFIG_I2C=m
    CONFIG_I2C_CHARDEV=m
    # I2C Algorithms
    CONFIG_I2C_ALGOBIT=m
    CONFIG_I2C_ALGOPCF=m
    CONFIG_I2C_ALGOPCA=m
    # I2C Hardware Bus support
    CONFIG_I2C_ALI1535=m
    CONFIG_I2C_ALI1563=m
    CONFIG_I2C_ALI15X3=m
    CONFIG_I2C_AMD756=m
    CONFIG_I2C_AMD756_S4882=m
    CONFIG_I2C_AMD8111=m
    # CONFIG_I2C_ELEKTOR is not set
    CONFIG_I2C_I801=m
    CONFIG_I2C_I810=m
    CONFIG_I2C_PIIX4=m
    CONFIG_I2C_ISA=m
    CONFIG_I2C_NFORCE2=m
    CONFIG_I2C_PARPORT=m
    CONFIG_I2C_PARPORT_LIGHT=m
    CONFIG_I2C_PROSAVAGE=m
    CONFIG_I2C_SAVAGE4=m
    CONFIG_SCx200_ACB=m
    CONFIG_I2C_SIS5595=m
    CONFIG_I2C_SIS630=m
    CONFIG_I2C_SIS96X=m
    # CONFIG_I2C_STUB is not set
    CONFIG_I2C_VIA=m
    CONFIG_I2C_VIAPRO=m
    CONFIG_I2C_VOODOO3=m
    CONFIG_I2C_PCA_ISA=m
    # Hardware Sensors Chip support
    CONFIG_I2C_SENSOR=m
    CONFIG_SENSORS_ADM1021=m
    CONFIG_SENSORS_ADM1025=m
    CONFIG_SENSORS_ADM1026=m
    CONFIG_SENSORS_ADM1031=m
    CONFIG_SENSORS_ASB100=m
    CONFIG_SENSORS_DS1621=m
    CONFIG_SENSORS_FSCHER=m
    CONFIG_SENSORS_FSCPOS=m
    CONFIG_SENSORS_GL518SM=m
    CONFIG_SENSORS_GL520SM=m
    CONFIG_SENSORS_IT87=m
    CONFIG_SENSORS_LM63=m
    CONFIG_SENSORS_LM75=m
    CONFIG_SENSORS_LM77=m
    CONFIG_SENSORS_LM78=m
    CONFIG_SENSORS_LM80=m
    CONFIG_SENSORS_LM83=m
    CONFIG_SENSORS_LM85=m
    CONFIG_SENSORS_LM87=m
    CONFIG_SENSORS_LM90=m
    CONFIG_SENSORS_LM92=m
    CONFIG_SENSORS_MAX1619=m
    CONFIG_SENSORS_PC87360=m
    CONFIG_SENSORS_SMSC47B397=m
    CONFIG_SENSORS_SIS5595=m
    CONFIG_SENSORS_SMSC47M1=m
    CONFIG_SENSORS_VIA686A=m
    CONFIG_SENSORS_W83781D=m
    CONFIG_SENSORS_W83L785TS=m
    CONFIG_SENSORS_W83627HF=m
    # Other I2C Chip support
    CONFIG_SENSORS_DS1337=m
    CONFIG_SENSORS_EEPROM=m
    CONFIG_SENSORS_PCF8574=m
    CONFIG_SENSORS_PCF8591=m
    CONFIG_SENSORS_RTC8564=m
    # CONFIG_I2C_DEBUG_CORE is not set
    # CONFIG_I2C_DEBUG_ALGO is not set
    # CONFIG_I2C_DEBUG_BUS is not set
    # CONFIG_I2C_DEBUG_CHIP is not set
    # Dallas's 1-wire bus
    CONFIG_W1=m
    CONFIG_W1_MATROX=m
    CONFIG_W1_DS9490=m
    CONFIG_W1_DS9490_BRIDGE=m
    CONFIG_W1_THERM=m
    CONFIG_W1_SMEM=m
    # Misc devices
    # CONFIG_IBM_ASM is not set
    # Multimedia devices
    CONFIG_VIDEO_DEV=m
    # Video For Linux
    # Video Adapters
    CONFIG_VIDEO_BT848=m
    CONFIG_VIDEO_PMS=m
    CONFIG_VIDEO_BWQCAM=m
    CONFIG_VIDEO_CQCAM=m
    CONFIG_VIDEO_W9966=m
    CONFIG_VIDEO_CPIA=m
    CONFIG_VIDEO_CPIA_PP=m
    CONFIG_VIDEO_CPIA_USB=m
    CONFIG_VIDEO_SAA5246A=m
    CONFIG_VIDEO_SAA5249=m
    CONFIG_TUNER_3036=m
    CONFIG_VIDEO_STRADIS=m
    # CONFIG_VIDEO_ZORAN is not set
    # CONFIG_VIDEO_ZR36120 is not set
    CONFIG_VIDEO_MEYE=m
    CONFIG_VIDEO_SAA7134=m
    CONFIG_VIDEO_SAA7134_DVB=m
    CONFIG_VIDEO_MXB=m
    CONFIG_VIDEO_DPC=m
    CONFIG_VIDEO_HEXIUM_ORION=m
    CONFIG_VIDEO_HEXIUM_GEMINI=m
    CONFIG_VIDEO_CX88=m
    CONFIG_VIDEO_CX88_DVB=m
    CONFIG_VIDEO_OVCAMCHIP=m
    # Radio Adapters
    CONFIG_RADIO_CADET=m
    CONFIG_RADIO_RTRACK=m
    CONFIG_RADIO_RTRACK2=m
    CONFIG_RADIO_AZTECH=m
    CONFIG_RADIO_GEMTEK=m
    CONFIG_RADIO_GEMTEK_PCI=m
    CONFIG_RADIO_MAXIRADIO=m
    CONFIG_RADIO_MAESTRO=m
    CONFIG_RADIO_SF16FMI=m
    CONFIG_RADIO_SF16FMR2=m
    CONFIG_RADIO_TERRATEC=m
    CONFIG_RADIO_TRUST=m
    CONFIG_RADIO_TYPHOON=m
    # CONFIG_RADIO_TYPHOON_PROC_FS is not set
    CONFIG_RADIO_ZOLTRIX=m
    # Digital Video Broadcasting Devices
    CONFIG_DVB=y
    CONFIG_DVB_CORE=m
    # Supported SAA7146 based PCI Adapters
    CONFIG_DVB_AV7110=m
    CONFIG_DVB_AV7110_OSD=y
    CONFIG_DVB_BUDGET=m
    CONFIG_DVB_BUDGET_CI=m
    CONFIG_DVB_BUDGET_AV=m
    CONFIG_DVB_BUDGET_PATCH=m
    # Supported USB Adapters
    CONFIG_DVB_TTUSB_BUDGET=m
    CONFIG_DVB_TTUSB_DEC=m
    CONFIG_DVB_DIBUSB=m
    CONFIG_DVB_DIBUSB_MISDESIGNED_DEVICES=y
    # CONFIG_DVB_DIBCOM_DEBUG is not set
    CONFIG_DVB_CINERGYT2=m
    CONFIG_DVB_CINERGYT2_TUNING=y
    CONFIG_DVB_CINERGYT2_STREAM_URB_COUNT=32
    CONFIG_DVB_CINERGYT2_STREAM_BUF_SIZE=512
    CONFIG_DVB_CINERGYT2_QUERY_INTERVAL=250
    CONFIG_DVB_CINERGYT2_ENABLE_RC_INPUT_DEVICE=y
    CONFIG_DVB_CINERGYT2_RC_QUERY_INTERVAL=100
    # Supported FlexCopII (B2C2) Adapters
    CONFIG_DVB_B2C2_FLEXCOP=m
    CONFIG_DVB_B2C2_FLEXCOP_PCI=m
    CONFIG_DVB_B2C2_FLEXCOP_USB=m
    # CONFIG_DVB_B2C2_FLEXCOP_DEBUG is not set
    CONFIG_DVB_B2C2_SKYSTAR=m
    # Supported BT878 Adapters
    CONFIG_DVB_BT8XX=m
    # Supported DVB Frontends
    # Customise DVB Frontends
    # DVB-S (satellite) frontends
    CONFIG_DVB_STV0299=m
    CONFIG_DVB_CX24110=m
    CONFIG_DVB_TDA8083=m
    CONFIG_DVB_TDA80XX=m
    CONFIG_DVB_MT312=m
    CONFIG_DVB_VES1X93=m
    # DVB-T (terrestrial) frontends
    CONFIG_DVB_SP8870=m
    CONFIG_DVB_SP887X=m
    CONFIG_DVB_CX22700=m
    CONFIG_DVB_CX22702=m
    CONFIG_DVB_L64781=m
    CONFIG_DVB_TDA1004X=m
    CONFIG_DVB_NXT6000=m
    CONFIG_DVB_MT352=m
    CONFIG_DVB_DIB3000MB=m
    CONFIG_DVB_DIB3000MC=m
    # DVB-C (cable) frontends
    CONFIG_DVB_ATMEL_AT76C651=m
    CONFIG_DVB_VES1820=m
    CONFIG_DVB_TDA10021=m
    CONFIG_DVB_STV0297=m
    # ATSC (North American/Korean Terresterial DTV) frontends
    CONFIG_DVB_NXT2002=m
    CONFIG_DVB_OR51211=m
    CONFIG_DVB_OR51132=m
    CONFIG_VIDEO_SAA7146=m
    CONFIG_VIDEO_SAA7146_VV=m
    CONFIG_VIDEO_VIDEOBUF=m
    CONFIG_VIDEO_TUNER=m
    CONFIG_VIDEO_BUF=m
    CONFIG_VIDEO_BUF_DVB=m
    CONFIG_VIDEO_BTCX=m
    CONFIG_VIDEO_IR=m
    CONFIG_VIDEO_TVEEPROM=m
    # Graphics support
    CONFIG_FB=y
    CONFIG_FB_CFB_FILLRECT=y
    CONFIG_FB_CFB_COPYAREA=y
    CONFIG_FB_CFB_IMAGEBLIT=y
    CONFIG_FB_SOFT_CURSOR=y
    # CONFIG_FB_MACMODES is not set
    CONFIG_FB_MODE_HELPERS=y
    # CONFIG_FB_TILEBLITTING is not set
    # CONFIG_FB_CIRRUS is not set
    # CONFIG_FB_PM2 is not set
    # CONFIG_FB_CYBER2000 is not set
    # CONFIG_FB_ASILIANT is not set
    # CONFIG_FB_IMSTT is not set
    # CONFIG_FB_VGA16 is not set
    CONFIG_FB_VESA=y
    CONFIG_FB_VESA_STD=y
    # CONFIG_FB_VESA_TNG is not set
    CONFIG_VIDEO_SELECT=y
    # CONFIG_FB_HGA is not set
    # CONFIG_FB_NVIDIA is not set
    # CONFIG_FB_RIVA is not set
    CONFIG_FB_I810=m
    CONFIG_FB_I810_GTF=y
    CONFIG_FB_INTEL=m
    # CONFIG_FB_INTEL_DEBUG is not set
    # CONFIG_FB_MATROX is not set
    # CONFIG_FB_RADEON_OLD is not set
    # CONFIG_FB_RADEON is not set
    # CONFIG_FB_ATY128 is not set
    # CONFIG_FB_ATY is not set
    # CONFIG_FB_SAVAGE is not set
    # CONFIG_FB_SIS is not set
    # CONFIG_FB_NEOMAGIC is not set
    # CONFIG_FB_KYRO is not set
    # CONFIG_FB_3DFX is not set
    # CONFIG_FB_VOODOO1 is not set
    # CONFIG_FB_TRIDENT is not set
    # CONFIG_FB_PM3 is not set
    # CONFIG_FB_GEODE is not set
    # CONFIG_FB_S1D13XXX is not set
    # CONFIG_FB_VIRTUAL is not set
    # Console display driver support
    CONFIG_VGA_CONSOLE=y
    # CONFIG_MDA_CONSOLE is not set
    CONFIG_DUMMY_CONSOLE=y
    CONFIG_FRAMEBUFFER_CONSOLE=y
    CONFIG_FONTS=y
    # CONFIG_FONT_8x8 is not set
    CONFIG_FONT_8x16=y
    # CONFIG_FONT_6x11 is not set
    # CONFIG_FONT_PEARL_8x8 is not set
    # CONFIG_FONT_ACORN_8x8 is not set
    # CONFIG_FONT_MINI_4x6 is not set
    # CONFIG_FONT_SUN8x16 is not set
    # CONFIG_FONT_SUN12x22 is not set
    # Logo configuration
    # CONFIG_LOGO is not set
    CONFIG_BACKLIGHT_LCD_SUPPORT=y
    CONFIG_BACKLIGHT_CLASS_DEVICE=m
    CONFIG_BACKLIGHT_DEVICE=y
    CONFIG_LCD_CLASS_DEVICE=m
    CONFIG_LCD_DEVICE=y
    CONFIG_FB_SPLASH=y
    # Sound
    CONFIG_SOUND=m
    # Advanced Linux Sound Architecture
    CONFIG_SND=m
    CONFIG_SND_TIMER=m
    CONFIG_SND_PCM=m
    CONFIG_SND_HWDEP=m
    CONFIG_SND_RAWMIDI=m
    CONFIG_SND_SEQUENCER=m
    # CONFIG_SND_SEQ_DUMMY is not set
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=m
    CONFIG_SND_PCM_OSS=m
    CONFIG_SND_SEQUENCER_OSS=y
    CONFIG_SND_RTCTIMER=m
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    CONFIG_SND_GENERIC_PM=y
    # Generic devices
    CONFIG_SND_MPU401_UART=m
    CONFIG_SND_OPL3_LIB=m
    CONFIG_SND_OPL4_LIB=m
    CONFIG_SND_VX_LIB=m
    CONFIG_SND_DUMMY=m
    CONFIG_SND_VIRMIDI=m
    CONFIG_SND_MTPAV=m
    CONFIG_SND_SERIAL_U16550=m
    CONFIG_SND_MPU401=m
    # ISA devices
    CONFIG_SND_AD1848_LIB=m
    CONFIG_SND_CS4231_LIB=m
    CONFIG_SND_AD1816A=m
    CONFIG_SND_AD1848=m
    CONFIG_SND_CS4231=m
    CONFIG_SND_CS4232=m
    CONFIG_SND_CS4236=m
    CONFIG_SND_ES968=m
    CONFIG_SND_ES1688=m
    CONFIG_SND_ES18XX=m
    CONFIG_SND_GUS_SYNTH=m
    CONFIG_SND_GUSCLASSIC=m
    CONFIG_SND_GUSEXTREME=m
    CONFIG_SND_GUSMAX=m
    CONFIG_SND_INTERWAVE=m
    CONFIG_SND_INTERWAVE_STB=m
    CONFIG_SND_OPTI92X_AD1848=m
    CONFIG_SND_OPTI92X_CS4231=m
    CONFIG_SND_OPTI93X=m
    CONFIG_SND_SB8=m
    CONFIG_SND_SB16=m
    CONFIG_SND_SBAWE=m
    CONFIG_SND_SB16_CSP=y
    CONFIG_SND_WAVEFRONT=m
    CONFIG_SND_ALS100=m
    CONFIG_SND_AZT2320=m
    CONFIG_SND_CMI8330=m
    CONFIG_SND_DT019X=m
    CONFIG_SND_OPL3SA2=m
    CONFIG_SND_SGALAXY=m
    CONFIG_SND_SSCAPE=m
    # PCI devices
    CONFIG_SND_AC97_CODEC=m
    CONFIG_SND_ALI5451=m
    CONFIG_SND_ATIIXP=m
    CONFIG_SND_ATIIXP_MODEM=m
    CONFIG_SND_AU8810=m
    CONFIG_SND_AU8820=m
    CONFIG_SND_AU8830=m
    CONFIG_SND_AZT3328=m
    CONFIG_SND_BT87X=m
    # CONFIG_SND_BT87X_OVERCLOCK is not set
    CONFIG_SND_CS46XX=m
    CONFIG_SND_CS46XX_NEW_DSP=y
    CONFIG_SND_CS4281=m
    CONFIG_SND_EMU10K1=m
    CONFIG_SND_EMU10K1X=m
    CONFIG_SND_CA0106=m
    CONFIG_SND_KORG1212=m
    CONFIG_SND_MIXART=m
    CONFIG_SND_NM256=m
    CONFIG_SND_RME32=m
    CONFIG_SND_RME96=m
    CONFIG_SND_RME9652=m
    CONFIG_SND_HDSP=m
    CONFIG_SND_TRIDENT=m
    CONFIG_SND_YMFPCI=m
    CONFIG_SND_ALS4000=m
    CONFIG_SND_CMIPCI=m
    CONFIG_SND_ENS1370=m
    CONFIG_SND_ENS1371=m
    CONFIG_SND_ES1938=m
    CONFIG_SND_ES1968=m
    CONFIG_SND_MAESTRO3=m
    CONFIG_SND_FM801=m
    CONFIG_SND_FM801_TEA575X=m
    CONFIG_SND_ICE1712=m
    CONFIG_SND_ICE1724=m
    CONFIG_SND_INTEL8X0=m
    CONFIG_SND_INTEL8X0M=m
    CONFIG_SND_SONICVIBES=m
    CONFIG_SND_VIA82XX=m
    CONFIG_SND_VIA82XX_MODEM=m
    CONFIG_SND_VX222=m
    CONFIG_SND_HDA_INTEL=m
    # USB devices
    CONFIG_SND_USB_AUDIO=m
    CONFIG_SND_USB_USX2Y=m
    # PCMCIA devices
    CONFIG_SND_VXPOCKET=m
    CONFIG_SND_VXP440=m
    CONFIG_SND_PDAUDIOCF=m
    # Open Sound System
    # CONFIG_SOUND_PRIME is not set
    # USB support
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB_ARCH_HAS_OHCI=y
    CONFIG_USB=m
    # CONFIG_USB_DEBUG is not set
    # Miscellaneous USB options
    CONFIG_USB_DEVICEFS=y
    CONFIG_USB_BANDWIDTH=y
    CONFIG_USB_DYNAMIC_MINORS=y
    CONFIG_USB_SUSPEND=y
    # CONFIG_USB_OTG is not set
    # USB Host Controller Drivers
    CONFIG_USB_EHCI_HCD=m
    CONFIG_USB_EHCI_SPLIT_ISO=y
    CONFIG_USB_EHCI_ROOT_HUB_TT=y
    CONFIG_USB_OHCI_HCD=m
    # CONFIG_USB_OHCI_BIG_ENDIAN is not set
    CONFIG_USB_OHCI_LITTLE_ENDIAN=y
    CONFIG_USB_UHCI_HCD=m
    CONFIG_USB_SL811_HCD=m
    CONFIG_USB_SL811_CS=m
    # USB Device Class drivers
    CONFIG_USB_AUDIO=m
    # USB Bluetooth TTY can only be used with disabled Bluetooth subsystem
    CONFIG_USB_MIDI=m
    CONFIG_USB_ACM=m
    CONFIG_USB_PRINTER=m
    # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
    CONFIG_USB_STORAGE=m
    # CONFIG_USB_STORAGE_DEBUG is not set
    CONFIG_USB_STORAGE_DATAFAB=y
    CONFIG_USB_STORAGE_FREECOM=y
    CONFIG_USB_STORAGE_ISD200=y
    CONFIG_USB_STORAGE_DPCM=y
    # CONFIG_USB_STORAGE_USBAT is not set
    CONFIG_USB_STORAGE_SDDR09=y
    CONFIG_USB_STORAGE_SDDR55=y
    CONFIG_USB_STORAGE_JUMPSHOT=y
    # USB Input Devices
    CONFIG_USB_HID=m
    CONFIG_USB_HIDINPUT=y
    CONFIG_HID_FF=y
    CONFIG_HID_PID=y
    CONFIG_LOGITECH_FF=y
    CONFIG_THRUSTMASTER_FF=y
    CONFIG_USB_HIDDEV=y
    # USB HID Boot Protocol drivers
    # CONFIG_USB_KBD is not set
    # CONFIG_USB_MOUSE is not set
    CONFIG_USB_AIPTEK=m
    CONFIG_USB_WACOM=m
    CONFIG_USB_KBTAB=m
    CONFIG_USB_POWERMATE=m
    CONFIG_USB_MTOUCH=m
    CONFIG_USB_EGALAX=m
    CONFIG_USB_XPAD=m
    CONFIG_USB_ATI_REMOTE=m
    # USB Imaging devices
    CONFIG_USB_MDC800=m
    CONFIG_USB_MICROTEK=m
    # USB Multimedia devices
    CONFIG_USB_DABUSB=m
    CONFIG_USB_VICAM=m
    CONFIG_USB_DSBR=m
    CONFIG_USB_IBMCAM=m
    CONFIG_USB_KONICAWC=m
    CONFIG_USB_OV511=m
    CONFIG_USB_SE401=m
    CONFIG_USB_SN9C102=m
    CONFIG_USB_STV680=m
    CONFIG_USB_W9968CF=m
    CONFIG_USB_PWC=m
    # USB Network Adapters
    CONFIG_USB_CATC=m
    CONFIG_USB_KAWETH=m
    CONFIG_USB_PEGASUS=m
    CONFIG_USB_RTL8150=m
    CONFIG_USB_USBNET=m
    # USB Host-to-Host Cables
    CONFIG_USB_ALI_M5632=y
    CONFIG_USB_AN2720=y
    CONFIG_USB_BELKIN=y
    CONFIG_USB_GENESYS=y
    CONFIG_USB_NET1080=y
    CONFIG_USB_PL2301=y
    CONFIG_USB_KC2190=y
    # Intelligent USB Devices/Gadgets
    CONFIG_USB_ARMLINUX=y
    CONFIG_USB_EPSON2888=y
    CONFIG_USB_ZAURUS=y
    CONFIG_USB_CDCETHER=y
    # USB Network Adapters
    CONFIG_USB_AX8817X=y
    CONFIG_USB_ZD1201=m
    CONFIG_USB_MON=m
    # USB port drivers
    CONFIG_USB_USS720=m
    # USB Serial Converter support
    CONFIG_USB_SERIAL=m
    CONFIG_USB_SERIAL_GENERIC=y
    CONFIG_USB_SERIAL_AIRPRIME=m
    CONFIG_USB_SERIAL_BELKIN=m
    CONFIG_USB_SERIAL_WHITEHEAT=m
    CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
    CONFIG_USB_SERIAL_CP2101=m
    CONFIG_USB_SERIAL_CYPRESS_M8=m
    CONFIG_USB_SERIAL_EMPEG=m
    CONFIG_USB_SERIAL_FTDI_SIO=m
    CONFIG_USB_SERIAL_VISOR=m
    CONFIG_USB_SERIAL_IPAQ=m
    CONFIG_USB_SERIAL_IR=m
    CONFIG_USB_SERIAL_EDGEPORT=m
    CONFIG_USB_SERIAL_EDGEPORT_TI=m
    CONFIG_USB_SERIAL_GARMIN=m
    CONFIG_USB_SERIAL_IPW=m
    CONFIG_USB_SERIAL_KEYSPAN_PDA=m
    CONFIG_USB_SERIAL_KEYSPAN=m
    CONFIG_USB_SERIAL_KEYSPAN_MPR=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
    CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19=y
    CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y
    CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y
    CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
    CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y
    CONFIG_USB_SERIAL_KLSI=m
    CONFIG_USB_SERIAL_KOBIL_SCT=m
    CONFIG_USB_SERIAL_MCT_U232=m
    CONFIG_USB_SERIAL_PL2303=m
    CONFIG_USB_SERIAL_HP4X=m
    CONFIG_USB_SERIAL_SAFE=m
    CONFIG_USB_SERIAL_SAFE_PADDED=y
    CONFIG_USB_SERIAL_TI=m
    CONFIG_USB_SERIAL_CYBERJACK=m
    CONFIG_USB_SERIAL_XIRCOM=m
    CONFIG_USB_SERIAL_OPTION=m
    CONFIG_USB_SERIAL_OMNINET=m
    CONFIG_USB_EZUSB=y
    # USB Miscellaneous drivers
    CONFIG_USB_EMI62=m
    CONFIG_USB_EMI26=m
    CONFIG_USB_AUERSWALD=m
    CONFIG_USB_RIO500=m
    CONFIG_USB_LEGOTOWER=m
    CONFIG_USB_LCD=m
    CONFIG_USB_LED=m
    CONFIG_USB_CYTHERM=m
    CONFIG_USB_PHIDGETKIT=m
    CONFIG_USB_PHIDGETSERVO=m
    CONFIG_USB_IDMOUSE=m
    CONFIG_USB_SISUSBVGA=m
    CONFIG_USB_TEST=m
    # USB ATM/DSL drivers
    CONFIG_USB_ATM=m
    CONFIG_USB_SPEEDTOUCH=m
    # USB Gadget Support
    CONFIG_USB_GADGET=m
    # CONFIG_USB_GADGET_DEBUG_FILES is not set
    CONFIG_USB_GADGET_NET2280=y
    CONFIG_USB_NET2280=m
    # CONFIG_USB_GADGET_PXA2XX is not set
    # CONFIG_USB_GADGET_GOKU is not set
    # CONFIG_USB_GADGET_LH7A40X is not set
    # CONFIG_USB_GADGET_OMAP is not set
    # CONFIG_USB_GADGET_DUMMY_HCD is not set
    CONFIG_USB_GADGET_DUALSPEED=y
    # CONFIG_USB_ZERO is not set
    CONFIG_USB_ETH=m
    CONFIG_USB_ETH_RNDIS=y
    CONFIG_USB_GADGETFS=m
    CONFIG_USB_FILE_STORAGE=m
    # CONFIG_USB_FILE_STORAGE_TEST is not set
    CONFIG_USB_G_SERIAL=m
    # MMC/SD Card support
    CONFIG_MMC=m
    # CONFIG_MMC_DEBUG is not set
    CONFIG_MMC_BLOCK=m
    CONFIG_MMC_WBSD=m
    # InfiniBand support
    # CONFIG_INFINIBAND is not set
    # File systems
    CONFIG_EXT2_FS=y
    CONFIG_EXT2_FS_XATTR=y
    CONFIG_EXT2_FS_POSIX_ACL=y
    CONFIG_EXT2_FS_SECURITY=y
    CONFIG_EXT3_FS=y
    CONFIG_EXT3_FS_XATTR=y
    CONFIG_EXT3_FS_POSIX_ACL=y
    CONFIG_EXT3_FS_SECURITY=y
    CONFIG_JBD=y
    # CONFIG_JBD_DEBUG is not set
    CONFIG_FS_MBCACHE=y
    CONFIG_REISER4_FS=y
    # CONFIG_REISER4_DEBUG is not set
    CONFIG_REISERFS_FS=y
    # CONFIG_REISERFS_CHECK is not set
    # CONFIG_REISERFS_PROC_INFO is not set
    CONFIG_REISERFS_FS_XATTR=y
    CONFIG_REISERFS_FS_POSIX_ACL=y
    CONFIG_REISERFS_FS_SECURITY=y
    CONFIG_JFS_FS=y
    CONFIG_JFS_POSIX_ACL=y
    # CONFIG_JFS_SECURITY is not set
    # CONFIG_JFS_DEBUG is not set
    # CONFIG_JFS_STATISTICS is not set
    CONFIG_FS_POSIX_ACL=y
    # XFS support
    CONFIG_XFS_FS=y
    CONFIG_XFS_EXPORT=y
    # CONFIG_XFS_RT is not set
    CONFIG_XFS_QUOTA=y
    CONFIG_XFS_SECURITY=y
    CONFIG_XFS_POSIX_ACL=y
    # CONFIG_MINIX_FS is not set
    # CONFIG_ROMFS_FS is not set
    CONFIG_INOTIFY=y
    CONFIG_QUOTA=y
    CONFIG_QFMT_V1=m
    CONFIG_QFMT_V2=m
    CONFIG_QUOTACTL=y
    CONFIG_DNOTIFY=y
    # CONFIG_AUTOFS_FS is not set
    CONFIG_AUTOFS4_FS=y
    # CD-ROM/DVD Filesystems
    CONFIG_ISO9660_FS=y
    CONFIG_JOLIET=y
    CONFIG_ZISOFS=y
    CONFIG_ZISOFS_FS=y
    CONFIG_UDF_FS=y
    CONFIG_UDF_NLS=y
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=m
    CONFIG_MSDOS_FS=m
    CONFIG_VFAT_FS=m
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    CONFIG_NTFS_FS=m
    # CONFIG_NTFS_DEBUG is not set
    CONFIG_NTFS_RW=y
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_SYSFS=y
    CONFIG_DEVFS_FS=y
    CONFIG_DEVFS_MOUNT=y
    # CONFIG_DEVFS_DEBUG is not set
    # CONFIG_DEVPTS_FS_XATTR is not set
    CONFIG_TMPFS=y
    # CONFIG_TMPFS_XATTR is not set
    # CONFIG_HUGETLBFS is not set
    # CONFIG_HUGETLB_PAGE is not set
    CONFIG_RAMFS=y
    # Miscellaneous filesystems
    # CONFIG_ADFS_FS is not set
    # CONFIG_AFFS_FS is not set
    # CONFIG_HFS_FS is not set
    # CONFIG_HFSPLUS_FS is not set
    # CONFIG_BEFS_FS is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    # CONFIG_CRAMFS is not set
    # CONFIG_VXFS_FS is not set
    # CONFIG_HPFS_FS is not set
    # CONFIG_QNX4FS_FS is not set
    # CONFIG_SYSV_FS is not set
    CONFIG_UFS_FS=m
    # CONFIG_UFS_FS_WRITE is not set
    # Network File Systems
    CONFIG_NFS_FS=y
    CONFIG_NFS_V3=y
    CONFIG_NFS_V4=y
    # CONFIG_NFS_DIRECTIO is not set
    CONFIG_NFSD=y
    CONFIG_NFSD_V3=y
    CONFIG_NFSD_V4=y
    CONFIG_NFSD_TCP=y
    CONFIG_LOCKD=y
    CONFIG_LOCKD_V4=y
    CONFIG_EXPORTFS=y
    CONFIG_SUNRPC=y
    CONFIG_SUNRPC_GSS=y
    CONFIG_RPCSEC_GSS_KRB5=y
    # CONFIG_RPCSEC_GSS_SPKM3 is not set
    CONFIG_SMB_FS=m
    # CONFIG_SMB_NLS_DEFAULT is not set
    CONFIG_CIFS=m
    # CONFIG_CIFS_STATS is not set
    # CONFIG_CIFS_XATTR is not set
    # CONFIG_CIFS_EXPERIMENTAL is not set
    CONFIG_NCP_FS=m
    # CONFIG_NCPFS_PACKET_SIGNING is not set
    # CONFIG_NCPFS_IOCTL_LOCKING is not set
    # CONFIG_NCPFS_STRONG is not set
    CONFIG_NCPFS_NFS_NS=y
    CONFIG_NCPFS_OS2_NS=y
    CONFIG_NCPFS_SMALLDOS=y
    CONFIG_NCPFS_NLS=y
    # CONFIG_NCPFS_EXTRAS is not set
    CONFIG_CODA_FS=m
    # CONFIG_CODA_FS_OLD_API is not set
    CONFIG_AFS_FS=m
    # CONFIG_SH_FS is not set
    CONFIG_RXRPC=m
    # Partition Types
    # CONFIG_PARTITION_ADVANCED is not set
    CONFIG_MSDOS_PARTITION=y
    # Native Language Support
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="iso8859-1"
    CONFIG_NLS_CODEPAGE_437=m
    CONFIG_NLS_CODEPAGE_737=m
    CONFIG_NLS_CODEPAGE_775=m
    CONFIG_NLS_CODEPAGE_850=m
    CONFIG_NLS_CODEPAGE_852=m
    CONFIG_NLS_CODEPAGE_855=m
    CONFIG_NLS_CODEPAGE_857=m
    CONFIG_NLS_CODEPAGE_860=m
    CONFIG_NLS_CODEPAGE_861=m
    CONFIG_NLS_CODEPAGE_862=m
    CONFIG_NLS_CODEPAGE_863=m
    CONFIG_NLS_CODEPAGE_864=m
    CONFIG_NLS_CODEPAGE_865=m
    CONFIG_NLS_CODEPAGE_866=m
    CONFIG_NLS_CODEPAGE_869=m
    CONFIG_NLS_CODEPAGE_936=m
    CONFIG_NLS_CODEPAGE_950=m
    CONFIG_NLS_CODEPAGE_932=m
    CONFIG_NLS_CODEPAGE_949=m
    CONFIG_NLS_CODEPAGE_874=m
    CONFIG_NLS_ISO8859_8=m
    CONFIG_NLS_CODEPAGE_1250=m
    CONFIG_NLS_CODEPAGE_1251=m
    CONFIG_NLS_ASCII=m
    CONFIG_NLS_ISO8859_1=y
    CONFIG_NLS_ISO8859_2=m
    CONFIG_NLS_ISO8859_3=m
    CONFIG_NLS_ISO8859_4=m
    CONFIG_NLS_ISO8859_5=m
    CONFIG_NLS_ISO8859_6=m
    CONFIG_NLS_ISO8859_7=m
    CONFIG_NLS_ISO8859_9=m
    CONFIG_NLS_ISO8859_13=m
    CONFIG_NLS_ISO8859_14=m
    CONFIG_NLS_ISO8859_15=m
    CONFIG_NLS_KOI8_R=m
    CONFIG_NLS_KOI8_U=m
    CONFIG_NLS_UTF8=y
    # Profiling support
    # CONFIG_PROFILING is not set
    # Kernel hacking
    # CONFIG_PRINTK_TIME is not set
    CONFIG_DEBUG_KERNEL=y
    CONFIG_MAGIC_SYSRQ=y
    CONFIG_LOG_BUF_SHIFT=15
    # CONFIG_SCHEDSTATS is not set
    # CONFIG_DEBUG_SLAB is not set
    # CONFIG_DEBUG_PREEMPT is not set
    # CONFIG_DEBUG_SPINLOCK is not set
    # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
    # CONFIG_DEBUG_KOBJECT is not set
    # CONFIG_DEBUG_HIGHMEM is not set
    CONFIG_DEBUG_BUGVERBOSE=y
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_FS is not set
    # CONFIG_FRAME_POINTER is not set
    CONFIG_EARLY_PRINTK=y
    # CONFIG_DEBUG_STACKOVERFLOW is not set
    # CONFIG_KPROBES is not set
    # CONFIG_DEBUG_STACK_USAGE is not set
    # Page alloc debug is incompatible with Software Suspend on i386
    # CONFIG_4KSTACKS is not set
    CONFIG_X86_FIND_SMP_CONFIG=y
    CONFIG_X86_MPPARSE=y
    # Security options
    # CONFIG_KEYS is not set
    CONFIG_SECURITY=y
    # CONFIG_SECURITY_NETWORK is not set
    CONFIG_SECURITY_CAPABILITIES=m
    CONFIG_SECURITY_ROOTPLUG=m
    CONFIG_SECURITY_SECLVL=m
    # CONFIG_SECURITY_REALTIME is not set
    # CONFIG_SECURITY_SELINUX is not set
    # Cryptographic options
    CONFIG_CRYPTO=y
    CONFIG_CRYPTO_HMAC=y
    CONFIG_CRYPTO_NULL=m
    CONFIG_CRYPTO_MD4=m
    CONFIG_CRYPTO_MD5=y
    CONFIG_CRYPTO_SHA1=y
    CONFIG_CRYPTO_SHA256=m
    CONFIG_CRYPTO_SHA512=m
    CONFIG_CRYPTO_WP512=m
    CONFIG_CRYPTO_TGR192=m
    CONFIG_CRYPTO_DES=y
    CONFIG_CRYPTO_BLOWFISH=m
    CONFIG_CRYPTO_TWOFISH=m
    CONFIG_CRYPTO_SERPENT=m
    CONFIG_CRYPTO_AES_586=m
    CONFIG_CRYPTO_CAST5=m
    CONFIG_CRYPTO_CAST6=m
    CONFIG_CRYPTO_TEA=m
    CONFIG_CRYPTO_ARC4=m
    CONFIG_CRYPTO_KHAZAD=m
    CONFIG_CRYPTO_ANUBIS=m
    CONFIG_CRYPTO_DEFLATE=y
    CONFIG_CRYPTO_LZF=y
    CONFIG_CRYPTO_MICHAEL_MIC=m
    CONFIG_CRYPTO_CRC32C=m
    CONFIG_CRYPTO_TEST=m
    # Hardware crypto devices
    CONFIG_CRYPTO_DEV_PADLOCK=m
    CONFIG_CRYPTO_DEV_PADLOCK_AES=y
    # Library routines
    CONFIG_CRC_CCITT=m
    CONFIG_CRC32=y
    CONFIG_LIBCRC32C=m
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_X86_SMP=y
    CONFIG_X86_HT=y
    CONFIG_X86_BIOS_REBOOT=y
    CONFIG_X86_TRAMPOLINE=y
    CONFIG_PC=y
    The build does not finish with an error.
    Any ideas?

    I have successfully build my kernel2612-ati with this PKGBUILD:
    # Contributor: giorgosc61
    pkgname=kernel2612-ati
    pkgver=2.6.12
    pkgrel=2
    pkgdesc="The Linux Kernel 2.6.12 with modules (IDE support),ATI Enabled"
    url="http://www.kernel.org"
    depends=('module-init-tools')
    install=kernel26.install
    ##### add any patch sources to this section
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
            http://www.kernel.org/pub/linux/kernel/ … gver.2.bz2
            config logo_linux_clut224.ppm ndevfs.patch
            #acpi-20050408-2.6.12-rc2.diff.fixup
            http://www.kernel.org/pub/linux/kernel/ … 6-13.patch
            ftp://ftp.kernel.org/pub/linux/kernel/p … 2.diff.bz2
            http://ck.kolivas.org/patches/2.6/2.6.1 … mpat2.diff
            http://gaugusch.at/acpi-dsdt-initrd-pat … 6.9.patch)
    # Function to grab var from src
    getvar() {
    old=$(cat Makefile | grep "^$1")
    echo $(echo ${old/"$1 ="/} | sed -e "s/[ ]*(.*)[ ]*/1/g")
    return 0
    build() {
    cd $startdir/src/linux-$pkgver
    ##### Uncomment and apply any patches here
      patch -Np1 -i ../patch-$pkgver.2 || return 1
      patch -Np1 -i ../ndevfs.patch || return 1
      patch -Np1 -i ../inotify-0.23-rml-2.6.12-rc6-13.patch || return 1
      patch -Np1 -i ../acpi-20050408-2.6.12.diff || return 1
      patch -Np1 -i ../nvidia_6111-6629_compat2.diff || return 1
      patch -Np1 -i ../acpi-dsdt-initrd-patch-v0.7d-2.6.9.patch || return 1
    ##### Arch logo - not compatible with gensplash!
    cp ../logo_linux_clut224.ppm drivers/video/logo/
    # get rid of the 'i' in i686
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    ##### Load config - uncomment your preferred config method
    yes "" | make config
    #make oldconfig || return 1
    #make menuconfig
    #make xconfig
    #make gconfig
    ##### NO USER CHANGES BELOW HERE #####
    # save the current pkgname
    old_pkgname=$pkgname
    # set pkgname for build purposes - DO NOT alter!
    pkgname=kernel26
    # save the updated config to build with today's date
    cp ./.config $startdir/config-$(date +%b%d-%Hh)
    # get EXTRAVERSION from Makefile to create a unique pkgname and /usr/src directory
    #_kernextra=$(getvar "EXTRAVERSION")
    # grab the 2.6.x.y version suffix from pkgver
    # _y="`echo $pkgver | cut --delim "." --fields 4`"
    # remove .y version suffix from _kernextra
    #_kernextra="`echo $_kernextra | sed "s|.$_y||g"`"
    # Read the full kernel version info from new config to use in pathnames and pkgname
    . ./.config
    # Kernel custom - to create a unique pkgname (see below)
    #_kerncust="${_kernextra}${CONFIG_LOCALVERSION}"
    _kerncust="${CONFIG_LOCALVERSION}"
    # Kernel release - will be the same as Makefile
    _kernrel="${pkgver}${_kerncust}"
    # Get the pkgver suffix for unique pkgname and /boot file suffices
    _pkgversuf="`echo $pkgver | sed "s|2.6.||g" | sed "s|.||g"`"
    # Set /boot file suffices from kernel release and pkgver suffix
    _kernboot="${_pkgversuf}${_kerncust}"
    # Set a new pkgname from kernel release and pkgver suffix
    pkgname="${pkgname}${_pkgversuf}${_kerncust}"
    # build!
    # echo
    # echo -n "Do you want to make clean (default YES)? (YES/NO): "
    # read choice
    # echo
    # echo -n "Press any key to start make or CTRL+C to quit"
    # read anykey
    # if [ "${choice}" = "NO" ] ; then
    # make bzImage modules || return 1
    # else
    make clean bzImage modules || return 1
    # fi
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    cp System.map $startdir/pkg/boot/System.map26${_kernboot}
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz26${_kernboot}
    install -D -m644 Makefile
      $startdir/pkg/usr/src/linux-${_kernrel}/Makefile
    install -D -m644 .config
      $startdir/pkg/usr/src/linux-${_kernrel}/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig26${_kernboot}
    mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/include
    mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
      cp -a include/$i $startdir/pkg/usr/src/linux-${_kernrel}/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers $startdir/pkg/usr/src/linux-${_kernrel}
    cp -a scripts $startdir/pkg/usr/src/linux-${_kernrel}
    mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/.tmp_versions
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-${_kernrel}/arch/i386/
    cp arch/i386/kernel/asm-offsets.s
      $startdir/pkg/usr/src/linux-${_kernrel}/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
      mkdir -p $startdir/pkg/usr/src/linux-${_kernrel}/`echo $i | sed 's|/Kconfig.*||'`
      cp $i $startdir/pkg/usr/src/linux-${_kernrel}/$i
    done
    cd $startdir/pkg/usr/src/linux-${_kernrel}/include && ln -s asm-i386 asm
    chown -R root.root $startdir/pkg/usr/src/linux-${_kernrel}
    cd $startdir/pkg/lib/modules/${_kernrel} &&
      (rm -f source build; ln -sf /usr/src/linux-${_kernrel} build)
    # Correct the pkgname in our PKGBUILD - this allows correct gensync operation
    # NOTE: pkgname variable must be declared with first 10 lines of PKGBUILD!
    cd $startdir
    sed -i "1,11 s|pkgname=$old_pkgname|pkgname=$pkgname|" ./PKGBUILD
    md5sums=('c5d2a1b62e1dad502c871bba267337d5' '3a4225e9dff9d6d03da41327e972f161'
             '2548307be940987c23545c7a65188b5f' '5a62bcc7e96601052c7405459b483826'
             '0ea10324c7e9a78e6633dc8c784e8deb' '39e751f6c4eaeb2bde1e78c0e9e9d7a9'
             '597f8944cf6a65c41373e952e8f46a56' '82488604906bbba37a412c78d7b5c5f0'
             '977bc6069e122e5f07b0311e094b5733')
    In this kernel I have made the modifications for ati-drivers in the kernel26 config as shown in the wiki. I used the PKGBUILD from the wiki for custom kernels.
    I installed it and now I am posting from it.
    I downloaded the ati-drivers-5 PKGBUILD to build my ati drivers.In the PKGBUILD I used
    _kernel=2.6.12-ati
    When I makepkg I get:
    [root@myhost ati-drivers]# makepkg -f
    ==> Making package: ati-drivers 8.14.13-5 (Mon Jul 25 19:40:59 UTC 2005)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==>     Using local copy of fglrx_6_8_0-8.14.13-1.i386.rpm
    ==>     Using local copy of fglrx-2.6-agpgart.patch
    ==>     Using local copy of fglrx-2.6.12-inter_module_get.patch
    ==>     Using local copy of fglrx-2.6.12-new-agpgart.patch
    ==>     Found fireglcontrol.desktop in build dir
    ==> Validating source files with MD5sums
        fglrx_6_8_0-8.14.13-1.i386.rpm ... Passed
        fglrx-2.6-agpgart.patch ... Passed
        fglrx-2.6.12-inter_module_get.patch ... Passed
        fglrx-2.6.12-new-agpgart.patch ... Passed
        fireglcontrol.desktop ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    ./lib/modules/fglrx/build_mod/2.6.x/Makefile
    ./lib/modules/fglrx/build_mod/agp.h
    ./lib/modules/fglrx/build_mod/agp3.c
    ./lib/modules/fglrx/build_mod/agp_backend.h
    ./lib/modules/fglrx/build_mod/agpgart.h
    ./lib/modules/fglrx/build_mod/agpgart_be.c
    ./lib/modules/fglrx/build_mod/drm.h
    ./lib/modules/fglrx/build_mod/drmP.h
    ./lib/modules/fglrx/build_mod/drm_compat.h
    ./lib/modules/fglrx/build_mod/drm_os_linux.h
    ./lib/modules/fglrx/build_mod/drm_proc.h
    ./lib/modules/fglrx/build_mod/firegl_public.c
    ./lib/modules/fglrx/build_mod/firegl_public.h
    ./lib/modules/fglrx/build_mod/i7505-agp.c
    ./lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC2
    ./lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC3
    ./lib/modules/fglrx/build_mod/make.sh
    ./lib/modules/fglrx/build_mod/nvidia-agp.c
    ./lib/modules/fglrx/make_install.sh
    ./opt/kde3/share/applnk/fireglcontrol_kde3.desktop
    ./usr/X11R6/bin/fgl_glxgears
    ./usr/X11R6/bin/fglrx_xgamma
    ./usr/X11R6/bin/fglrxconfig
    ./usr/X11R6/bin/fglrxinfo
    ./usr/X11R6/bin/fireglcontrolpanel
    ./usr/X11R6/include/X11/extensions/fglrx_gamma.h
    ./usr/X11R6/lib/libGL.so.1.2
    ./usr/X11R6/lib/libfglrx_gamma.a
    ./usr/X11R6/lib/libfglrx_gamma.so.1.0
    ./usr/X11R6/lib/modules/dri/atiogl_a_dri.so
    ./usr/X11R6/lib/modules/dri/fglrx_dri.so
    ./usr/X11R6/lib/modules/drivers/fglrx_drv.o
    ./usr/X11R6/lib/modules/linux/libfglrxdrm.a
    ./usr/include/GL/glxATI.h
    ./usr/share/applnk/fireglcontrol.kdelnk
    ./usr/share/doc/fglrx/ATI_LICENSE.TXT
    ./usr/share/doc/fglrx/LICENSE.GPL
    ./usr/share/doc/fglrx/LICENSE.QPL
    ./usr/share/doc/fglrx/articles/1gbhang.html
    ./usr/share/doc/fglrx/articles/4461.html
    ./usr/share/doc/fglrx/articles/4462.html
    ./usr/share/doc/fglrx/articles/4463.html
    ./usr/share/doc/fglrx/articles/4464.html
    ./usr/share/doc/fglrx/articles/4469.html
    ./usr/share/doc/fglrx/articles/4470.html
    ./usr/share/doc/fglrx/articles/4475.html
    ./usr/share/doc/fglrx/articles/4478.html
    ./usr/share/doc/fglrx/articles/4479.html
    ./usr/share/doc/fglrx/articles/4480.html
    ./usr/share/doc/fglrx/articles/4481.html
    ./usr/share/doc/fglrx/articles/4482.html
    ./usr/share/doc/fglrx/articles/4483.html
    ./usr/share/doc/fglrx/articles/4484.html
    ./usr/share/doc/fglrx/articles/4485.html
    ./usr/share/doc/fglrx/articles/corruptstereo.html
    ./usr/share/doc/fglrx/articles/corruptvtswitch.html
    ./usr/share/doc/fglrx/articles/devshm.html
    ./usr/share/doc/fglrx/articles/dga3dhang.html
    ./usr/share/doc/fglrx/articles/doom3corrupt.html
    ./usr/share/doc/fglrx/articles/dualheadvideo.html
    ./usr/share/doc/fglrx/articles/laptopsuspend.html
    ./usr/share/doc/fglrx/articles/missingdrmheaders.html
    ./usr/share/doc/fglrx/articles/mousecursorhang.html
    ./usr/share/doc/fglrx/articles/no3d-aiw8500dv.html
    ./usr/share/doc/fglrx/articles/no3d-kt400.html
    ./usr/share/doc/fglrx/articles/nomembercount.html
    ./usr/share/doc/fglrx/articles/pcie3dmemoryleak.html
    ./usr/share/doc/fglrx/articles/r420blankdisplay.html
    ./usr/share/doc/fglrx/articles/rv280dviblankdisplay.html
    ./usr/share/doc/fglrx/articles/rv350springdale.html
    ./usr/share/doc/fglrx/articles/secondheadcorruption.html
    ./usr/share/doc/fglrx/articles/xf86_enodev.html
    ./usr/share/doc/fglrx/articles/xrestartpcie.html
    ./usr/share/doc/fglrx/articles/xvsatshift.html
    ./usr/share/doc/fglrx/driverfaq.html
    ./usr/share/doc/fglrx/index.html
    ./usr/share/doc/fglrx/issues.html
    ./usr/share/doc/fglrx/linuxfaq.html
    ./usr/share/doc/fglrx/release-notes/images/backgrnd.gif
    ./usr/share/doc/fglrx/release-notes/images/caution.gif
    ./usr/share/doc/fglrx/release-notes/images/clipbrd.gif
    ./usr/share/doc/fglrx/release-notes/images/noboarder.gif
    ./usr/share/doc/fglrx/release-notes/index.html
    ./usr/share/doc/fglrx/tips-linux.html
    ./usr/share/doc/fglrx/user-manual/index.html
    ./usr/share/gnome/apps/fireglcontrol.desktop
    ./usr/share/icons/ati.xpm
    ./usr/src/ATI/fglrx_panel_sources.tgz
    ./usr/src/ATI/fglrx_sample_source.tgz
    50672 blocks
    patching file firegl_public.c
    Hunk #1 succeeded at 340 (offset -1 lines).
    patching file firegl_public.c
    Hunk #1 succeeded at 997 (offset -5 lines).
    Hunk #3 succeeded at 2940 (offset -5 lines).
    patching file agpgart_be.c
    Hunk #1 succeeded at 7067 (offset -14 lines).
    Hunk #3 succeeded at 7153 (offset -14 lines).
    Hunk #5 succeeded at 7204 (offset -14 lines).
    make: Entering directory `/usr/src/linux-2.6.12-ati'
      CC [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.o
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c: In function `__fgl_agp_init':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c:7613: warning: `pm_register' is deprecated (declared at include/linux/pm.h:106)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c: In function `__fgl_agp_cleanup':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/agpgart_be.c:7623: warning: `pm_unregister_all' is deprecated (declared at include/linux/pm.h:116)
      CC [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.o
    In file included from /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:125:
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.h:56:48: warning: backslash and newline separated by space
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.h:57:6: warning: backslash and newline separated by space
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.h:58:41: warning: backslash and newline separated by space
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: In function `firegl_stub_putminor':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:508: warning: `inter_module_put' is deprecated (declared at include/linux/module.h:568)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:510: warning: `inter_module_unregister' is deprecated (declared at include/linux/module.h:565)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: In function `firegl_stub_register':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:530: warning: `inter_module_register' is deprecated (declared at include/linux/module.h:564)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:561: warning: `inter_module_put' is deprecated (declared at include/linux/module.h:568)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: In function `__ke_verify_area':
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:1446: warning: `verify_area' is deprecated (declared at include/asm/uaccess.h:105)
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c: At top level:
    /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/firegl_public.c:2655: warning: initialization from incompatible pointer type
      LD [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/fglrx.o
      Building modules, stage 2.
      MODPOST
    Warning: could not find /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/.libfglrx_ip.a.GCC3.cmd for /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/libfglrx_ip.a.GCC3
      LD [M]  /var/abs/local/ati-drivers/src/lib/modules/fglrx/build_mod/fglrx.ko
    make: Leaving directory `/usr/src/linux-2.6.12-ati'
    ==> Compressing man pages...
    ==> Stripping debugging symbols from libraries...
    ==> Stripping symbols from binaries...
    ==> Generating .PKGINFO file...
    ==> Copying install script...
    ==> Generating .FILELIST file...
    ==> Compressing package...
    ==> Finished making: ati-drivers  (Mon Jul 25 19:41:25 UTC 2005)
    modprobe fglrx says fglrx not found.
    What exactly could be the problem?

  • A PKGBUILD that allows multiple installed kernels

    Hi All,
    I've had so many people help me with so many things here at Arch, hopefully this will be useful to someone.
    What is it:
    I've got a kernel PKGBUILD file that allows me to build and install as many different kernels as desired, as long as each one has a unique $pkgver-$pkgrel setting.
    /var/abs/local/kernel-custom1/PKGBUILD:
    # $Id: PKGBUILD,v 1.17 2004/05/11 23:25:20 judd Exp $
    # Maintainer: judd <[email protected]>
    # 2004/06/30: Modified to support multiple loaded kernels -jea
    # Any kernel with a unique $pkgver-$pkgrel will not conflict with others.
    pkgver=2.6.6
    pkgrel=custom1
    # name mangling is necessary so pacman will load multiple packages
    pkgname=kernel$pkgver$pkgrel
    pkgdesc="Linux Kernel ver: $pkgver, build: $pkgrel"
    url="http://www.kernel.org"
    depends=('module-init-tools')
    # Is this file were patches to grub/menu.lst should occur? -jea
    install=kernel26.install
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$pkgver.tar.bz2
    config)
    # patch makepkg to use as many sums as listed, in order? -jea
    md5sums=('5218790bc3db41e77a7422969639a9ad' 'fd32e9f43e9b6060e01f71d666372518')
    build() {
    cd $startdir/src/linux-$pkgver
    # get rid of the 'i' in i686
    carch=`echo $CARCH | sed 's|i||'`
    cat ../config | sed "s|#CARCH#|$carch|g" >./.config
    yes "" | make config
    # set EXTRAVERSION to create unique /lib/modules/ subdirectories
    cat Makefile | sed "s|EXTRAVERSION =|EXTRAVERSION = -$pkgrel|" > tmpMake
    mv tmpMake Makefile
    make clean bzImage modules || return 1
    mkdir -p $startdir/pkg/{lib/modules,boot}
    make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
    # create unique names in /boot/
    cp System.map $startdir/pkg/boot/System.map-$pkgver-$pkgrel
    cp arch/i386/boot/bzImage $startdir/pkg/boot/vmlinuz-$pkgver-$pkgrel
    install -D -m644 Makefile $startdir/pkg/usr/src/linux-$pkgver/Makefile
    install -D -m644 .config $startdir/pkg/usr/src/linux-$pkgver/.config
    install -D -m644 .config $startdir/pkg/boot/kconfig-$pkgver-$pkgrel
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/include
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel
    for i in acpi asm-generic asm-i386 config linux math-emu net pcmcia scsi video; do
    cp -a include/$i $startdir/pkg/usr/src/linux-$pkgver/include/
    done
    # copy files necessary for later builds, like nvidia and vmware
    # does this "$pkgver-$pkgrel" multi-kernel strategy screw these up? -jea
    cp -a scripts $startdir/pkg/usr/src/linux-$pkgver/
    cp arch/i386/Makefile $startdir/pkg/usr/src/linux-$pkgver/arch/i386/
    cp arch/i386/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-$pkgver/arch/i386/kernel/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p $startdir/pkg/usr/src/linux-$pkgver/`echo $i | sed 's|/Kconfig.*||'`
    cp $i $startdir/pkg/usr/src/linux-$pkgver/$i
    done
    cd $startdir/pkg/usr/src/linux-$pkgver/include && ln -s asm-i386 asm
    cd $startdir/pkg/usr/src
    # create a unique subdirectory under /usr/src/
    mv linux-$pkgver linux-$pkgver-$pkgrel
    chown -R root.root $startdir/pkg/usr/src/linux-$pkgver-$pkgrel
    cd $startdir/pkg/lib/modules/$pkgver-$pkgrel &&
    (rm -f build; ln -sf /usr/src/linux-$pkgver-$pkgrel build)
    How it works:
    The primary thing I've usually done is wipe out my custom kernel by inadvertantly overwriting the loadable modules in the /lib/modules/$pkgver directory with a pacman -Su.
    The reason for this is that the current arch kernel build does not set the EXTRAVERSION variable in the kernel top level makefile. Therefore all kernels of the same $pkgver use the same /lib/modules/$pkgver/ subdirectory.
    The above PKGBUILD sets EXTRAVERSION to the $pkgrel variable.
    This causes the loadable module tree to be in a /lib/modules/$pkgver-$pkgrel/ directory.
    There are two other places where kernels experience file conflicts:
    /boot/
    /usr/src/
    The /boot/ files: vmlinuz, System.map and kconfig are given unique names by appending the $pkgver-$pkgrel string.
    The /usr/src/linux-$pkgver/ directory is moved to /usr/src/linux-$pkgver-$pkgrel/.
    This allows the loadable kernel, the loadable modules and the stripped source headers to be in a unique place for each different kernel. Therefore multiple kernels can be loaded concurrently and the desired one may be chosen at boot time by grub.
    The only thing a little weird about this, is the $pkgname variable. pacman will only load one version of each $pkgname, so for multiple kernels to be loaded, they each have to have a unique $pkgname. This is accomplished by appending the $pkgver and $pkgrel to the $pkgname. This is fine, except it gives a slightly weird name for the resulting kernel package file. It has the format:
    kernel$pkgver$pkgrel-$pkgver-$pkgrel.pkg.tar.gz
    That is, the $pkgver and $pkgrel appear in the package file name twice. This also shows if one issues:
    pacman -Q | grep kernel -
    Which yields for me:
    kernel2.6.6custom1 2.6.6-custom1
    kernel2.6.61 2.6.6-1
    kernel26 2.6.7-1
    This command could only have shown one package before, now it shows that I currently have installed: a custom 2.6.6 kernel, the stock arch 2.6.6 kernel built with the above PKGBUILD and the current arch kernel26 package.
    I may choose between any of these at boot time with grub. And as an added bonus, the next time I pacman -Su I won't wipe out my custom /lib/modules subdirectory 8-)
    All of this assumes the supply of your own custom config file as in the arch wiki Building the Kernel in ABS instructions.
    Idle thoughts:
    It would sure be nice if something like this could be adopted for the stock arch kernels. Unlike most other packages it is often desirable to have multiple versions of the kernel package installed at once.
    I wonder if it is practical for pacman to allow multiple versions of the same $pkgname to be installed concurrently if the $pkgname-$pkgver-$pkgrel string is unique and the different versions do not have file conflicts?
    The other major package I could see this being applied to is gcc. It would be really cool to load different cross and other configurations of gcc concurently.
    I find one of the most diifficult things needed to get a workstation running is getting all of the correct kernel modules built in. It seems that most PCs today have all the major features built in to the motherboard chipset: graphics controller, sound, usb, ethernet, etc. If it was possible to build a database of custom kernels, one for each major chipset, then one could be chosen by hardware detection at install time. This would provide the benefits of a custom kernel in an autoload fashion.
    Just dreaming...
    Conclusion:
    I'm not sure how this strategy fits in with the bigger pictiure of running pkg repositories, building dependent packages, who knows what else.
    The thing I hope to add next is automatically adding and removing entries into: /boot/grub/menu.lst when the kernel package is installed and removed. The $pkgdesc string is perfect for serving as the title line.
    Hopefully this can be useful to others, it has helped me clean up my multi-kernel mess here.
    Thanks Again for such an awesome distro...
    John E. A.
    p.s Arch Rulz!

    Thank you, I tried to set something up like this in the wiki, but never tested it and it didn't work for some users. You've tested it well?
    If so, you can copy it over to the wiki (edit or overwrite the Kernel compile with ABS wiki entry), or I can.
    Thanks again, its much appreciated.
    Dusty

  • Share CUPS-PDF trough SAMBA

    Hello
    I am having trouble making a working installation of CUPS-PDF to be shared through SAMBA. Windows XP can't find the shared printers, the archbox can find it's own printer shares but can not use cups-pdf through SAMBA because of "Idle - Tree connect failed (NT_STATUS_ACCESS_DENIED)".
    smb.conf
    # This is the main Samba configuration file. You should read the
    # smb.conf(5) manual page in order to understand the options listed
    # here. Samba has a huge number of configurable options (perhaps too
    # many!) most of which are not shown in this example
    # For a step to step guide on installing, configuring and using samba,
    # read the Samba-HOWTO-Collection. This may be obtained from:
    # http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf
    # Many working examples of smb.conf files can be found in the
    # Samba-Guide which is generated daily and can be downloaded from:
    # http://www.samba.org/samba/docs/Samba-Guide.pdf
    # Any line which starts with a ; (semi-colon) or a # (hash)
    # is a comment and is ignored. In this example we will use a #
    # for commentry and a ; for parts of the config file that you
    # may wish to enable
    # NOTE: Whenever you modify this file you should run the command "testparm"
    # to check that you have not made any basic syntactic errors.
    #======================= Global Settings =====================================
    [global]
    # workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
    workgroup = WORKGROUP
    # server scomment = Printer Drivers
    path = /etc/samba/drivers
    browseable = yes
    guest ok = no
    read only = yes
    write list = roottring is the equivalent of the NT Description field
    server string = Samba Server
    comment = Printer Drivers
    path = /etc/samba/drivers
    browseable = yes
    guest ok = no
    read only = yes
    write list = root
    # Security mode. Defines in which mode Samba will operate. Possible
    # values are share, user, server, domain and ads. Most people will want
    # user level security. See the Samba-HOWTO-Collection for details.
    security = user
    # This option is important for security. It allows you to restrict
    # connections to machines which are on your local network. The
    # following example restricts access to two C class networks and
    # the "loopback" interface. For more examples of the syntax see
    # the smb.conf man page
    ; hosts allow = 192.168.1. 192.168.2. 127.
    # If you want to automatically load your printer list rather
    # than setting them up individually then you'll need this
    load printers = yes
    # you may wish to override the location of the printcap file
    ; printcap name = /etc/printcap
    # on SystemV system setting printcap name to lpstat should allow
    # you to automatically obtain a printer list from the SystemV spool
    # system
    printcap name = cups
    # It should not be necessary to specify the print system type unless
    # it is non-standard. Currently supported print systems include:
    # bsd, cups, sysv, plp, lprng, aix, hpux, qnx
    printing = cups
    # Uncomment this if you want a guest account, you must add this to /etc/passwd
    # otherwise the user "nobody" is used
    ; guest account = pcguest
    # this tells Samba to use a separate log file for each machine
    # that connects
    log file = /var/log/samba/%m.log
    # Put a capping on the size of the log files (in Kb).
    max log size = 50
    # Use password server option only with security = server
    # The argument list may include:
    # password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
    # or to auto-locate the domain controller/s
    # password server = *
    ; password server = <NT-Server-Name>
    # Use the realm option only with security = ads
    # Specifies the Active Directory realm the host is part of
    ; realm = MY_REALM
    # Backend to store user information in. New installations should
    # use either tdbsam or ldapsam. smbpasswd is available for backwards
    # compatibility. tdbsam requires no further configuration.
    ; passdb backend = tdbsam
    # Using the following line enables you to customise your configuration
    # on a per machine basis. The %m gets replaced with the netbios name
    # of the machine that is connecting.
    # Note: Consider carefully the location in the configuration file of
    # this line. The included file is read at that point.
    ; include = /usr/local/samba/lib/smb.conf.%m
    # Configure Samba to use multiple interfaces
    # If you have multiple network interfaces then you must list them
    # here. See the man page for details.
    ; interfaces = 192.168.12.2/24 192.168.13.2/24
    # Browser Control Options:
    # set local master to no if you don't want Samba to become a master
    # browser on your network. Otherwise the normal election rules apply
    ; local master = no
    # OS Level determines the precedence of this server in master browser
    # elections. The default value should be reasonable
    ; os level = 33
    # Domain Master specifies Samba to be the Domain Master Browser. This
    # allows Samba to collate browse lists between subnets. Don't use this
    # if you already have a Windows NT domain controller doing this job
    ; domain master = yes
    # Preferred Master causes Samba to force a local browser election on startup
    # and gives it a slightly higher chance of winning the election
    ; preferred master = yes
    # Enable this if you want Samba to be a domain logon server for
    # Windows95 workstations.
    ; domain logons = yes
    # if ycomment = Printer Drivers
    path = /etc/samba/drivers
    browseable = yes
    guest ok = no
    read only = yes
    write list = rootou enable domain logons then you may want a per-machine or
    # per user logon script
    # run a specific logon batch file per workstation (machine)
    ; logon script = %m.bat
    # run a specific logon batch file per username
    ; logon script = %U.bat
    # Where to store roving profiles (only for Win95 and WinNT)
    # %L substitutes for this servers netbios name, %U is username
    # You must uncomment the [Profiles] share below
    ; logon path = \\%L\Profiles\%U
    # Windows Internet Name Serving Support Section:
    # WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
    ; wins support = yes
    # WINS Server - Tells the NMBD components of Samba to be a WINS Client
    # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
    ; wins server = w.x.y.z
    # WINS Proxy - Tells Samba to answer name resolution queries on
    # behalf of a non WINS capable client, for this to work there must be
    # at least one WINS Server on the network. The default is NO.
    ; wins proxy = yes
    comment = Printer Drivers
    path = /etc/samba/drivers
    browseable = yes
    guest ok = no
    read only = yes
    write list = root
    # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
    # via DNS nslookups. The default is NO.
    dns proxy = no
    # These scripts are used on a domain controller or stand-alone
    # machine to add or delete corresponding unix accounts
    ; add user script = /usr/sbin/useradd %u
    ; add group script = /usr/sbin/groupadd %g
    ; add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u
    ; delete user script = /usr/sbin/userdel %u
    ; dcomment = Printer Drivers
    path = /etc/samba/drivers
    browseable = yes
    guest ok = no
    read only = yes
    write list = rootelete user from group script = /usr/sbin/deluser %u %g
    ; delete group script = /usr/sbin/groupdel %g
    #============================ Share Definitions ==============================
    [homes]
    comment = Home Directories
    browseable = no
    writable = yes
    # Un-comment the following and create the netlogon directory for Domain Logons
    ; [netlogon]
    ; comment = Network Logon Service
    ; path = /usr/local/samba/lib/netlogon
    ; guest ok = yes
    ; writable = no
    ; share modes = no
    # Un-comment the following to provide a specific roving profile share
    # the default is to use the user's home directory
    ;[Profiles]
    ; path = /usr/local/samba/profiles
    ; browseable = no
    ; guest ok = yes
    # NOTE: If you have a BSD-style print system there is no need to
    # specifically define each individual printer
    [printers]
    comment = All Printers
    path = /var/spool/samba
    browseable = yes
    # Set public = yes to allow user 'guest account' to print
    public = yes
    guest ok = no
    writable = no
    printable = yes
    # This one is useful for people to share files
    ;[tmp]
    ; comment = Temporary file space
    ; path = /tmp
    ; read only = no
    ; public = yes
    # A publicly accessible directory, but read only, except for people in
    # the "staff" group
    ;[public]
    ; comment = Public Stuff
    ; path = /home/samba
    ; public = yes
    ; writable = no
    ; printable = no
    ; write list = @staff
    # Other examples.
    # A private printer, usable only by fred. Spool data will be placed in fred's
    # home directory. Note that fred must have write access to the spool directory,
    # wherever it is.
    ;[fredsprn]
    ; comment = Fred's Printer
    ; valid users = fred
    ; path = /homes/fred
    ; printer = freds_printer
    ; public = no
    ; writable = no
    ; printable = yes
    # A private directory, usable only by fred. Note that fred requires write
    # access to the directory.
    ;[fredsdir]
    ; comment = Fred's Service
    ; path = /usr/somewhere/private
    ; valid users = fred
    ; public = no
    ; writable = yes
    ; printable = no
    # a service which has a different directory for each machine that connects
    # this allows you to tailor configurations to incoming machines. You could
    # alcomment = Printer Drivers
    path = /etc/samba/drivers
    browseable = yes
    guest ok = no
    read only = yes
    write list = rootso use the %U option to tailor it by user name.
    # The %m gets replaced with the machine name that is connecting.
    ;[pchome]
    ; comment = PC Directories
    ; path = /usr/pc/%m
    ; public = no
    ; writable = yes
    # A publicly accessible directory, read/write to all users. Note that all files
    # created in the directory by users will be owned by the default user, so
    # any user with access can delete any other user's files. Obviously this
    # directory must be writable by the default user. Another user could of course
    # be specified, in which case all files would be owned by that user instead.
    ;[public]
    ; path = /usr/somewhere/else/public
    ; public = yes
    ; only guest = yes
    ; writable = yes
    ; printable = no
    # The following two entries demonstrate how to share a directory so that two
    # users can place files there that will be owned by the specific users. In this
    # setup, the directory should be writable by both users and should have the
    # sticky bit set on it to prevent abuse. Obviously this could be extended to
    # as many users as required.
    ;[myshare]
    ; comment = Mary's and Fred's stuff
    ; path = /usr/somewhere/shared
    ; valid users = mary fred
    ; public = no
    ; writable = yes
    ; printable = no
    ; create mask = 0765
    ;[print$]
    ; comment = Printer Drivers
    ; path = /etc/samba/drivers
    ; browseable = yes
    ; guest ok = no
    ; read only = yes
    ; write list = root
    ;[CUPS-PDF_Printer]
    ; comment = funny
    ; path = /home/john/PDF
    ; browsable = yes
    ; read only = yes
    ; hide unreadable = yes
    ; guest ok = no
    cups
    # "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $"
    # Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
    # complete description of this file.
    # Log general information in error_log - change "warn" to "debug"
    # for troubleshooting...
    LogLevel warn
    # Administrator user group...
    SystemGroup sys root
    # Only listen for connections from the local machine.
    Listen localhost:631
    Listen /var/run/cups/cups.sock
    # Show shared printers on the local network.
    Browsing On
    BrowseOrder allow,deny
    BrowseAllow all
    BrowseLocalProtocols CUPS dnssd
    # Default authentication type, when authentication is required...
    DefaultAuthType Basic
    # Web interface setting...
    WebInterface Yes
    # Restrict access to the server...
    <Location />
    Order allow,deny
    Allow 192.168.1.*
    Allow @LOCAL
    </Location>
    # Restrict access to the admin pages...
    <Location /admin>
    Order allow,deny
    </Location>
    # Restrict access to configuration files...
    <Location /admin/conf>
    AuthType Default
    Require user @SYSTEM
    Order allow,deny
    </Location>
    # Set the default printer/job policies...
    <Policy default>
    # Job/subscription privacy...
    JobPrivateAccess default
    JobPrivateValues default
    SubscriptionPrivateAccess default
    SubscriptionPrivateValues default
    # Job-related operations must be done by the owner or an administrator...
    <Limit Create-Job Print-Job Print-URI Validate-Job>
    Order deny,allow
    </Limit>
    <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    # All administration operations require an administrator to authenticate...
    <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # All printer operations require a printer operator to authenticate...
    <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # Only the owner or an administrator can cancel or authenticate a job...
    <Limit Cancel-Job CUPS-Authenticate-Job>
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    <Limit All>
    Order deny,allow
    </Limit>
    </Policy>
    # Set the authenticated printer/job policies...
    <Policy authenticated>
    # Job/subscription privacy...
    JobPrivateAccess default
    JobPrivateValues default
    SubscriptionPrivateAccess default
    SubscriptionPrivateValues default
    # Job-related operations must be done by the owner or an administrator...
    <Limit Create-Job Print-Job Print-URI Validate-Job>
    AuthType Default
    Order deny,allow
    </Limit>
    <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    # All administration operations require an administrator to authenticate...
    <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # All printer operations require a printer operator to authenticate...
    <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
    AuthType Default
    Require user @SYSTEM
    Order deny,allow
    </Limit>
    # Only the owner or an administrator can cancel or authenticate a job...
    <Limit Cancel-Job CUPS-Authenticate-Job>
    AuthType Default
    Require user @OWNER @SYSTEM
    Order deny,allow
    </Limit>
    <Limit All>
    Order deny,allow
    </Limit>
    </Policy>
    # End of "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $".
    Any suggestions?

    Hi Everyone!
    This pdf printer has been GREAT!
    But I did have to make one little tweak before it was good for me.
    The default PDF version of 1.4 produced an output file in which text would collide and overlap. Patching the build for PDF version 1.2 fixed it for me.
    Here's the amended PKGBUILD:
    pkgname=cups-pdf
    pkgver=1.7.0
    pkgrel=3
    pkgdesc="CUPS PDF Backend"
    depends=('cups')
    url="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/"
    source=(http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/cups-pdf_$pkgver.tar.gz)
    md5sums=('875ed70ec1acdab9d935bca45ee521f8')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    cat src/cups-pdf.h | sed "s|CPPDFVER "1.4"|CPPDFVER "1.2"|" > tmpFile
    mv tmpFile src/cups-pdf.h
    gcc -O9 -s -o cups-pdf -Isrc src/cups-pdf.c
    install -D -m 755 cups-pdf $startdir/pkg/usr/lib/cups/backend/cups-pdf
    install -D -m 644 extra/PostscriptColor.ppd.gz $startdir/pkg/usr/share/cups/model/Postscript.Color.ppd.gz
    p.s. I know posting PKGBUILD source to the forum is somewhat of a no no
    (sorry sarah31, and thank you for everything!)
    It just seemed like a good idea to correct this for the archive searchers.
    android

  • Kdelibs-noarts -- help please, doesn't work [solved]

    I'm a xfce user and just want amarok and sometimes k3b and k9copy from kde. I don't want any konqueror, kwrite, arts or any other bloated stuff in my machine. So, i modified the kdelibs PKGBUILD to suit my needs -without arts nor avahi dependency/support.
    It builds and runs fine, but when restarting my system (or installing it without having official kdelibs package previously installed) i have no symlinks to the bins. I also have no menu items for kde-apps. If i try to run amarok (for example) from terminal giving the whole address (/opt/kde/bin/amarokapp) it runs ok giving no error, so i guess the problem is just that my kdelibs pkg isn't making the appropriate symlinks during boot?
    Thanks in advance for any help.
    Here is the PKGBUILD:
    pkgname=kdelibs-noarts
    pkgver=3.5.6
    kdever=3.5.6
    pkgrel=1
    pkgdesc="KDE Core Libraries klein"
    arch=(i686 x86_64)
    url="http://www.kde.org"
    provides='kdelibs'
    conflicts='kdelibs'
    replaces='kdelibs'
    groups=('kde')
    depends=('db' 'libxslt' 'pcre' 'libart-lgpl' 'openexr'
    'jasper' 'fam' 'bzip2' 'openssl' 'libidn' 'perl'
    'aspell' 'heimdal' 'acl' 'libtiff' 'qt>=3.3.7')
    makedepends=(pkgconfig cups)
    # for easier build, just uncomment the mirror you want to use
    # mirror="ftp.solnet.ch/mirror/KDE" # updated every 2 hours, very fast for Europe
    mirror="ftp.kde.org/pub/kde" # main server
    # mirror="ibiblio.org/pub/mirrors/kde/" # ibiblio mirror
    source=(ftp://$mirror/stable/$kdever/src/kdelibs-$pkgver.tar.bz2
    #http://www.archlinux.org/~jgc/kdnssd-avahi-20060319.tar.bz2
    applications.menu.patch
    kdeprintrc.patch
    fileshareset-wrapper.c
    kde-menu.patch
    xdg-icon-lookup.patch
    kicker-crash.patch
    inotify.patch
    qxembed.cpp.patch)
    build() {
    # Source the QT and KDE profile
    [ "$QTDIR" = "" ] && source /etc/profile.d/qt.sh
    [ "$KDEDIR" = "" ] && source /etc/profile.d/kde.sh
    # start building
    cd $startdir/src/kdelibs-$pkgver
    patch -Np1 -i $startdir/src/kde-menu.patch || return 1
    # patch -Np0 -i $startdir/src/xdg-icon-lookup.patch || return 1
    patch -Np0 -i $startdir/src/applications.menu.patch || return 1
    patch -Np0 -i $startdir/src/kicker-crash.patch || return 1
    patch -Np0 -i $startdir/src/inotify.patch || return 1
    patch -Np4 -i $startdir/src/qxembed.cpp.patch || return 1
    # Replace dns-sd implementation with avahi implementation
    # rm dnssd/*
    # cp -r ${startdir}/src/kdnssd-avahi-20060319/* dnssd/
    # rm dnssd/configure{,.in}
    # sed -i -e 's/kdnssd-avahi/dnssd/g' dnssd/configure.in.in
    # sed -i -e 's|ksocketaddress.h|network/ksocketaddress.h|' dnssd/publicservice.cpp
    #Needed for updated kdnssd-avahi and inotify patch
    make -f admin/Makefile.common dist
    ./configure --prefix=/opt/kde --with-distribution="Arch Linux" --with-alsa
    --disable-dependency-tracking --disable-debug
    --disable-dnotify --enable-inotify --enable-sendfile --x-libraries=/usr/share
    --without-lua-dir --without-lua-includes --without-lua-libraries
    --without-hspell --enable-gcc-hidden-visibility --without-arts --enable-final
    --enable-new-ldflags LDFLAGS="${LDFLAGS} -L/opt/qt/lib"
    # --enable-final # remove this if you build with < 512mb ram.
    make || return 1
    make DESTDIR=$startdir/pkg install || return 1
    # Set cups as default printing system
    cd $startdir/pkg/opt/kde/share/config
    patch -Np0 -i $startdir/src/kdeprintrc.patch || return 1
    # fix that stupid fileshareset suid problem
    mv $startdir/pkg/opt/kde/bin/fileshareset $startdir/pkg/opt/kde/bin/fileshareset.pl
    gcc -Wall $startdir/src/fileshareset-wrapper.c -o $startdir/pkg/opt/kde/bin/fileshareset
    chmod 0755 $startdir/pkg/opt/kde/bin/fileshareset.pl
    chmod 4755 $startdir/pkg/opt/kde/bin/fileshareset
    rm $startdir/pkg/opt/kde/bin/filesharelist
    cd $startdir/pkg/opt/kde/bin/
    ln -s fileshareset.pl filesharelist
    md5sums=('f2da82c44b8a4e177018732e64a83a36' #'b7b98e965960f2d55741a10070aa943d'
    'a66270abcdd0dcb2e28d3b2464927ff6' '6061c259247f56f0ede21deabfad2732'
    '60ab1a486895d6c18ef334ec958c48d6' 'e94aef45b5a59fe58c7cc085ab1dd3ae'
    'f7abfe849e5122dd01d6b8a884999da0' '091d05a08330372ddbaf5ef9d426be53'
    '42d288e71fa0a886bc8882c198a27f2e' 'b697d458119880d0333dd368304e30aa')

    I fixed it. The problem was so stupid, i forgot to add kde-common as dependency... however, it is working now. I cleaned the PKGBUILD a little and uploaded it to AUR.

  • Strigiapplet's cmake doesn't find my libqt-mt.so

    Hi all,
    I have been trying to update strigiapplet (from AUR) to the new version.
    But it fails on linking, saying it can't find -lqt-mt (but it's in /opt/qt/lib, which is in /etc/ld.so.conf and $QTDIR is /opt/qt)
    Here's my PKGBUILD:
    pkgname=strigiapplet
    pkgver=0.5.7
    pkgrel=1
    pkgdesc="Strigi Desktop Search Applet and Kioslave for KDE3"
    license="GPL"
    arch=('i686' 'x86_64')
    url="http://www.vandenoever.info/software/strigi/"
    makedepends=('cmake')
    depends=('kdelibs' 'strigi' 'libextractor')
    source=(http://downloads.sf.net/$pkgname/$pkgname-$pkgver.tar.bz2)
    build() {
    cd $startdir/src/$pkgname-$pkgver
    cmake -DCMAKE_INSTALL_PREFIX=/opt/kde -DCMAKE_INCLUDE_PATH=/opt/kde/include -DCMAKE_LIBRARY_PATH=/opt/kde/lib .
    make || return 1
    make DESTDIR=$startdir/pkg install || return 1
    md5sums=('9f899651a32eb7c6d89220b0041f952d')
    and here's the error msg:
    [ 64%] Building CXX object src/kickerapplet/CMakeFiles/strigiapplet.dir/trayicon.o
    [ 67%] Building CXX object src/kickerapplet/CMakeFiles/strigiapplet.dir/moc_hitmenuitem.o
    [ 70%] Building CXX object src/kickerapplet/CMakeFiles/strigiapplet.dir/moc_hitsview.o
    [ 72%] Building CXX object src/kickerapplet/CMakeFiles/strigiapplet.dir/moc_qt3strigiclient.o
    [ 75%] Building CXX object src/kickerapplet/CMakeFiles/strigiapplet.dir/moc_strigilineedit.o
    [ 78%] Building CXX object src/kickerapplet/CMakeFiles/strigiapplet.dir/moc_trayicon.o
    Linking CXX executable strigiapplet
    /usr/bin/ld: cannot find -lqt-mt
    collect2: ld returned 1 exit status
    make[2]: *** [src/kickerapplet/strigiapplet] Error 1
    make[1]: *** [src/kickerapplet/CMakeFiles/strigiapplet.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: Build Failed. Aborting...
    anyone knows what's wrong?

    Since you seem to be using a new disk for Lion, Time Machine will consider previous backups to be for a "different" computer.  Try doing a control-click or click-and-hold on the Time Machine icon in the Dock, then choose "Browse Other Time Machine Disks".  This should allow Time Machine to see the previous backups.
    In the worst case you should be able to open those Time Machine backups and copy your documents from there to your home folder.
    By the way, you've been misled by poor field labeling on this forum into typing a large part of your message into the field intended for the subject.  In the future just type a short summary of your post into that field and type the whole message into the field below that.

Maybe you are looking for

  • How to sync Outlook 2010 Notes to iCloud account?

    I use Outlook 2010 and have installed the iCloud add-in but there is no "Notes" folder under iCloud in Outllok, it will not let me add a directory either. Is it not possible to sync the notes?

  • Output File : German Characters are not coming

    Hi All, In my output file german characters are not showing. All the german Symbols are coming as '?'. Is there any way to get that? Regards, Sridhar

  • How do you configure the webserver on Leopard?

    I'm not sure what version of Apache is on Leopard but what file is edited to add things like PHP etc? I've looked under /etc/http/ but this directory is empty so how to I check PHP is turned on and turn it on if it isn't? Thanks for your help.

  • Auto respond emailer stops

    Hi We have developed an email application, to give auto response to the mails based on the body of the text. Sometimes the application stops or terminates. We use the inbox mail properties as            Properties props = System.getProperties();     

  • Backup and restore buttons not working

    Hi, Any button in my backup and restore centre with a shield next to it (for UAC) is not working. Identical to this thread: https://social.technet.microsoft.com/Forums/windows/en-US/6a138e65-2834-41ac-bd40-c2344e20b824/backup-and-restore-panel-button