From 79238c94a095e142974041ab8029a388a9f8b398 Mon Sep 17 00:00:00 2001 From: Michael Larabel Date: Wed, 2 Apr 2008 10:15:24 -0400 Subject: [PATCH] Initial 0.1.0 Public Release --- CHANGE-LOG | 81 + COPYING | 674 ++++ LICENSE | 22 + README | 17 + TODO | 27 + phoronix-test-suite | 76 + pts-core/functions/pts-functions-gtk.php | 54 + pts-core/functions/pts-functions-install.php | 82 + pts-core/functions/pts-functions-merge.php | 165 + pts-core/functions/pts-functions-run.php | 183 + pts-core/functions/pts-functions.php | 286 ++ pts-core/functions/pts-functions_linux.php | 143 + pts-core/objects/tandem_XmlReader.php | 127 + pts-core/objects/tandem_XmlWriter.php | 157 + pts-core/pts-benchmark-screen.php | 107 + pts-core/pts-install-benchmark.php | 34 + pts-core/pts-main.php | 86 + pts-core/pts-merge-results.php | 37 + .../phoronix-test-suite.gif | Bin 0 -> 53906 bytes .../pts-results-viewer/pts-results-viewer.xsl | 52 + pts-core/pts-results-viewer/pts-viewer.css | 96 + pts-core/pts-results-viewer/pts.js | 15 + pts-core/pts-run-benchmark.php | 257 ++ pts-core/pts-run-cmd.php | 123 + pts/benchmark-profiles/build-imagemagick.xml | 20 + pts/benchmark-profiles/build-linux-kernel.xml | 20 + pts/benchmark-profiles/build-mplayer.xml | 20 + pts/benchmark-profiles/build-php.xml | 20 + pts/benchmark-profiles/compress-gzip.xml | 20 + pts/benchmark-profiles/doom3-demo.xml | 110 + pts/benchmark-profiles/doom3.xml | 110 + pts/benchmark-profiles/encode-flac.xml | 26 + pts/benchmark-profiles/encode-mp3.xml | 20 + pts/benchmark-profiles/encode-ogg.xml | 20 + pts/benchmark-profiles/etqw-demo.xml | 53 + pts/benchmark-profiles/etqw.xml | 77 + pts/benchmark-profiles/fgl-glxgears.xml | 44 + pts/benchmark-profiles/hdparm-read.xml | 44 + pts/benchmark-profiles/nexuiz.xml | 64 + pts/benchmark-profiles/quake4.xml | 110 + pts/benchmark-profiles/ramspeed.xml | 60 + .../build-imagemagick/install.sh | 25 + .../build-imagemagick/parse-results.php | 5 + .../build-imagemagick/post.sh | 4 + .../build-linux-kernel/install.sh | 27 + .../build-linux-kernel/linux-2624-config | 3098 +++++++++++++++++ .../build-linux-kernel/parse-results.php | 5 + .../build-linux-kernel/post.sh | 4 + .../build-linux-kernel/time-compile-kernel | 14 + .../build-mplayer/install.sh | 26 + .../build-mplayer/parse-results.php | 5 + pts/benchmark-resources/build-mplayer/post.sh | 4 + pts/benchmark-resources/build-mplayer/pre.sh | 4 + pts/benchmark-resources/build-php/install.sh | 42 + .../build-php/parse-results.php | 5 + pts/benchmark-resources/build-php/post.sh | 4 + .../compress-gzip/install.sh | 21 + .../compress-gzip/parse-results.php | 5 + pts/benchmark-resources/compress-gzip/post.sh | 4 + pts/benchmark-resources/compress-gzip/pre.sh | 4 + pts/benchmark-resources/doom3-demo/install.sh | 24 + .../doom3-demo/parse-results.php | 5 + pts/benchmark-resources/doom3/install.sh | 20 + .../doom3/parse-results.php | 5 + .../encode-flac/install.sh | 26 + .../encode-flac/parse-results.php | 5 + pts/benchmark-resources/encode-flac/post.sh | 5 + pts/benchmark-resources/encode-flac/pre.sh | 6 + pts/benchmark-resources/encode-mp3/install.sh | 25 + .../encode-mp3/parse-results.php | 5 + pts/benchmark-resources/encode-mp3/post.sh | 5 + pts/benchmark-resources/encode-mp3/pre.sh | 6 + pts/benchmark-resources/encode-ogg/install.sh | 53 + .../encode-ogg/parse-results.php | 5 + pts/benchmark-resources/encode-ogg/post.sh | 5 + pts/benchmark-resources/encode-ogg/pre.sh | 6 + pts/benchmark-resources/etqw-demo/install.sh | 21 + .../etqw-demo/parse-results.php | 5 + pts/benchmark-resources/etqw/install.sh | 27 + .../etqw/parse-results.php | 5 + .../fgl-glxgears/parse-results.php | 6 + .../hdparm-read/install.sh | 7 + .../hdparm-read/parse-results.php | 6 + pts/benchmark-resources/nexuiz/benchmark.cfg | 114 + pts/benchmark-resources/nexuiz/install.sh | 14 + .../nexuiz/parse-results.php | 7 + pts/benchmark-resources/quake4/install.sh | 28 + .../quake4/parse-results.php | 5 + pts/benchmark-resources/ramspeed/install.sh | 16 + .../ramspeed/parse-results.php | 5 + pts/benchmark-suites/audio-encoding.xml | 25 + pts/benchmark-suites/compilation.xml | 25 + pts/benchmark-suites/gaming.xml | 25 + pts/benchmark-suites/graphics.xml | 19 + pts/benchmark-suites/motherboard.xml | 22 + pts/benchmark-suites/recursion-test.xml | 15 + pts/benchmark-suites/universe.xml | 50 + user-config.xml | 18 + 98 files changed, 7716 insertions(+) create mode 100644 CHANGE-LOG create mode 100644 COPYING create mode 100644 LICENSE create mode 100644 README create mode 100644 TODO create mode 100755 phoronix-test-suite create mode 100644 pts-core/functions/pts-functions-gtk.php create mode 100644 pts-core/functions/pts-functions-install.php create mode 100644 pts-core/functions/pts-functions-merge.php create mode 100644 pts-core/functions/pts-functions-run.php create mode 100644 pts-core/functions/pts-functions.php create mode 100644 pts-core/functions/pts-functions_linux.php create mode 100644 pts-core/objects/tandem_XmlReader.php create mode 100644 pts-core/objects/tandem_XmlWriter.php create mode 100644 pts-core/pts-benchmark-screen.php create mode 100644 pts-core/pts-install-benchmark.php create mode 100644 pts-core/pts-main.php create mode 100644 pts-core/pts-merge-results.php create mode 100644 pts-core/pts-results-viewer/phoronix-test-suite.gif create mode 100644 pts-core/pts-results-viewer/pts-results-viewer.xsl create mode 100644 pts-core/pts-results-viewer/pts-viewer.css create mode 100644 pts-core/pts-results-viewer/pts.js create mode 100644 pts-core/pts-run-benchmark.php create mode 100644 pts-core/pts-run-cmd.php create mode 100644 pts/benchmark-profiles/build-imagemagick.xml create mode 100644 pts/benchmark-profiles/build-linux-kernel.xml create mode 100644 pts/benchmark-profiles/build-mplayer.xml create mode 100644 pts/benchmark-profiles/build-php.xml create mode 100644 pts/benchmark-profiles/compress-gzip.xml create mode 100644 pts/benchmark-profiles/doom3-demo.xml create mode 100644 pts/benchmark-profiles/doom3.xml create mode 100644 pts/benchmark-profiles/encode-flac.xml create mode 100644 pts/benchmark-profiles/encode-mp3.xml create mode 100644 pts/benchmark-profiles/encode-ogg.xml create mode 100644 pts/benchmark-profiles/etqw-demo.xml create mode 100644 pts/benchmark-profiles/etqw.xml create mode 100644 pts/benchmark-profiles/fgl-glxgears.xml create mode 100644 pts/benchmark-profiles/hdparm-read.xml create mode 100644 pts/benchmark-profiles/nexuiz.xml create mode 100644 pts/benchmark-profiles/quake4.xml create mode 100644 pts/benchmark-profiles/ramspeed.xml create mode 100644 pts/benchmark-resources/build-imagemagick/install.sh create mode 100644 pts/benchmark-resources/build-imagemagick/parse-results.php create mode 100644 pts/benchmark-resources/build-imagemagick/post.sh create mode 100644 pts/benchmark-resources/build-linux-kernel/install.sh create mode 100644 pts/benchmark-resources/build-linux-kernel/linux-2624-config create mode 100644 pts/benchmark-resources/build-linux-kernel/parse-results.php create mode 100644 pts/benchmark-resources/build-linux-kernel/post.sh create mode 100755 pts/benchmark-resources/build-linux-kernel/time-compile-kernel create mode 100644 pts/benchmark-resources/build-mplayer/install.sh create mode 100644 pts/benchmark-resources/build-mplayer/parse-results.php create mode 100644 pts/benchmark-resources/build-mplayer/post.sh create mode 100644 pts/benchmark-resources/build-mplayer/pre.sh create mode 100644 pts/benchmark-resources/build-php/install.sh create mode 100644 pts/benchmark-resources/build-php/parse-results.php create mode 100644 pts/benchmark-resources/build-php/post.sh create mode 100644 pts/benchmark-resources/compress-gzip/install.sh create mode 100644 pts/benchmark-resources/compress-gzip/parse-results.php create mode 100644 pts/benchmark-resources/compress-gzip/post.sh create mode 100644 pts/benchmark-resources/compress-gzip/pre.sh create mode 100755 pts/benchmark-resources/doom3-demo/install.sh create mode 100644 pts/benchmark-resources/doom3-demo/parse-results.php create mode 100755 pts/benchmark-resources/doom3/install.sh create mode 100644 pts/benchmark-resources/doom3/parse-results.php create mode 100644 pts/benchmark-resources/encode-flac/install.sh create mode 100644 pts/benchmark-resources/encode-flac/parse-results.php create mode 100644 pts/benchmark-resources/encode-flac/post.sh create mode 100644 pts/benchmark-resources/encode-flac/pre.sh create mode 100644 pts/benchmark-resources/encode-mp3/install.sh create mode 100644 pts/benchmark-resources/encode-mp3/parse-results.php create mode 100644 pts/benchmark-resources/encode-mp3/post.sh create mode 100644 pts/benchmark-resources/encode-mp3/pre.sh create mode 100644 pts/benchmark-resources/encode-ogg/install.sh create mode 100644 pts/benchmark-resources/encode-ogg/parse-results.php create mode 100644 pts/benchmark-resources/encode-ogg/post.sh create mode 100644 pts/benchmark-resources/encode-ogg/pre.sh create mode 100755 pts/benchmark-resources/etqw-demo/install.sh create mode 100644 pts/benchmark-resources/etqw-demo/parse-results.php create mode 100755 pts/benchmark-resources/etqw/install.sh create mode 100644 pts/benchmark-resources/etqw/parse-results.php create mode 100644 pts/benchmark-resources/fgl-glxgears/parse-results.php create mode 100755 pts/benchmark-resources/hdparm-read/install.sh create mode 100644 pts/benchmark-resources/hdparm-read/parse-results.php create mode 100644 pts/benchmark-resources/nexuiz/benchmark.cfg create mode 100755 pts/benchmark-resources/nexuiz/install.sh create mode 100644 pts/benchmark-resources/nexuiz/parse-results.php create mode 100755 pts/benchmark-resources/quake4/install.sh create mode 100644 pts/benchmark-resources/quake4/parse-results.php create mode 100644 pts/benchmark-resources/ramspeed/install.sh create mode 100644 pts/benchmark-resources/ramspeed/parse-results.php create mode 100644 pts/benchmark-suites/audio-encoding.xml create mode 100644 pts/benchmark-suites/compilation.xml create mode 100644 pts/benchmark-suites/gaming.xml create mode 100644 pts/benchmark-suites/graphics.xml create mode 100644 pts/benchmark-suites/motherboard.xml create mode 100644 pts/benchmark-suites/recursion-test.xml create mode 100644 pts/benchmark-suites/universe.xml create mode 100644 user-config.xml diff --git a/CHANGE-LOG b/CHANGE-LOG new file mode 100644 index 000000000..ff38e5f95 --- /dev/null +++ b/CHANGE-LOG @@ -0,0 +1,81 @@ + +PHORONIX TEST SUITE CHANGE-LOG + +Phoronix Test Suite 0.1.0 + +- Initial public release! (April 2, 2008) + +Phoronix Test Suite 0.0.9 + +- phoronix-test-suite list-tests now displays the profile's status and the license type of software +- Drop pts-core/pts-results-viewer/text.gif +- Fix 0.0.8 regression as the zero fix caused no results to be saved +- Allow "upload" argument to use relative/absolute path instead of just the save name + +Phoronix Test Suite 0.0.8 + +- Save result even if the value is zero +- Fix merge-results bug when using global ID(s) + +Phoronix Test Suite 0.0.7 + +- Support for benchmark for extracting all arguments from that test. +- Support for benchmark for extracting all arguments from that test. +- Change list-benchmarks to list-tests +- A number of end-user input checks and errors if arguments are missing +- Various bug fixes in path to 0.1 + +Phoronix Test Suite 0.0.6 + +- Nexuiz 2.4 Profile +- Added ImageMagick Build Profile +- Add Linux Kernel (2.6.25) Build Profile +- Add Universe Profile (universe). The Universe profile is made up of all Phoronix Test Suite benchmark profiles in a maintained state. +- Fix compress-gzip profile so results are actually outputted +- Added Enemy Territory: Quake Wars demo profile... currently seems to hang on start +- Added (optional) PreRunMessage to benchmarking profiles at PTSBenchmark/Information/PreRunMessage. This just displays a string of information (such as a warning or benchmark limitation) and then when the user hits any key the benchmark will continue. +- Hdparm profile script now uses gksu (TODO: support other *su) +- EnvironmentDirectory in user-config.xml now requires an absolute location. Defaults to ~/pts-benchmark-env. +- Fix list-saved-tests so that it will actually list the saved tests. +- Introduce pts_save_result. Checks for SAVE_RESULTS_LOCATION and makes it if it doesn't exist and copies over the XSL, CSS, and JavaScript to SAVE_RESULTS_LOCATION/pts-results/viewer for the results viewer. +- Use profile-check on the global database for checking whether Global ID is valid remotely, instead of attempting fetch directly. +- Fix bug where if you entered an invalid benchmark/suite name, it would ask if you wanted to save the results before realizing it didn't exist. + +Phoronix Test Suite 0.0.5 + +- Code cleaning +- More improvements with Phoronix Test Suite Global Database + +Phoronix Test Suite 0.0.4-1 + +- Fix a remote-comparison regression + +Phoronix Test Suite 0.0.4 + +- Support for registered/authenticated uploads to global database +- Directory for saved results is now exported to user-config.xml +- New Global Database features +- Fix X Server 1.3.0 detection + +Phoronix Test Suite 0.0.3 + +- Initial "Global Database" interaction +- "Do you want to open in your web browser?" CLI dialog +- Fix Intel Pentium M core detection count (Pentium M's don't have 9 cores) +- Merge fixes + +Phoronix Test Suite 0.0.2 + +- Initial remote upload support +- Initial remote comparison support +- Refined directory structure +- Separating out Linux-specific hardware/software calls for parsing +- Support storing/installing benchmarks in different directories +- A few merging bug fixes +- Support for suites calling other suites, handled recursively +- Various bug fixes. + +Phoronix Test Suite 0.0.1 + +- Initial Private Release + diff --git a/COPYING b/COPYING new file mode 100644 index 000000000..94a9ed024 --- /dev/null +++ b/COPYING @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..1c0c994a9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +Copyright (C) 2008, Phoronix Media. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + + +CONTACT INFORMATION: + +http://www.phoronix.com/ +http://www.phoronix-test-suite.com/ +http://www.phoronixmedia.com/ + diff --git a/README b/README new file mode 100644 index 000000000..c0455ef69 --- /dev/null +++ b/README @@ -0,0 +1,17 @@ +Copyright (C) 2008, Phoronix Media. + +Phoronix Test Suite: Proper Documentation Coming Soon... + +Phoronix Test Suite is licensed under the GNU GPLv3. See COPYING file for more details. + +Patches, new profiles, etc welcome. Non-technical support messages can be directed to phoronix [at] phoronix.com. + +LINKS: + +Check Out This Link To See What The Phoronix Test Suite Is All About (Guide, Announcement, & More): http://www.phoronix.com/scan.php?page=article&item=phoronix_pts&num=1 + +Support, Discussion Forum: http://www.phoronix.com/forums/forumdisplay.php?f=49 +Project Website: http://www.phoronix-test-suite.com/ +PTS Global: http://global.phoronix-test-suite.com/ +Latest Git Code: http://www.phorogit.com/ +Phoronix: http://www.phoronix.com/ diff --git a/TODO b/TODO new file mode 100644 index 000000000..a0c87be50 --- /dev/null +++ b/TODO @@ -0,0 +1,27 @@ +- Rewrite and finish GUI component +- Clean up / make nice of text output +- Support multiple possible paths + - i.e. /usr/local/games/doom3/ || ~/doom3/ + - Right now stuck to benchmark-env but can be changed easily +- Copying Game Files from Discs (id Software Games) +- Verbose output of all system details, benchmark dumps, etc +- Improve / clean-up tandem_xml +- Add More Benchmarks! +- Provide Warnings For Major Things Possibly Influencing Results + - i.e. if EIST / Cool n Quiet are enabled +- Choice of SH or PHP for all install scripts +- Defaults values if hardware detection functions fail +- PossiblePaths to support multiple possible install locations, separated by : delimiter. +- pts/pts-functions-run.php: Merge common areas of pts_run_benchmark() and run_gtk_benchmark(). +- Use new (larger) Wav file for benchmarks... internal Phoronix WAV file used is copyrighted music. Current PTS One is too small for reliable results. +- Multiple results from a single benchmark (i.e. ramspeed with add, scale, sub) +- Improved hardware detection (i.e. recognize multiple graphics cards) +- Change all the echos to fwrite with using STDOUT or STDERR where relevant +- Support browsers aside from just Firefox launch. detect what's installed. +- PTS merge results needs all of the compatibility checks in place +- "Optimization Tips" +- More MD5 checks in test scripts +- Change locking system away from time-based but to PID based +- A ton of compatibility checks to do with merges and comparisons! +- Clean up tests scripts +- Support for WINE tests diff --git a/phoronix-test-suite b/phoronix-test-suite new file mode 100755 index 000000000..6f73ef097 --- /dev/null +++ b/phoronix-test-suite @@ -0,0 +1,76 @@ +#!/bin/sh + +# Phoronix Test Suite +# Copyright (C) 2008, Phoronix Media. +# http://www.phoronix.com/ +# http://www.phoronix-test-suite.com/ +# The Phoronix Test Suite is licensed under the GNU GPLv3. For more information see COPYING + +if [ ! -x /usr/bin/php ] && [ ! -x /usr/local/bin/php ] +then + echo "\n\nPHP5 CLI Must Be Installed To Run The Phoronix Test Suite!" + echo "Only PHP For The Command Line Is Needed, Not A Full-Blown PHP w/ Web Server" + echo "If you are using Ubuntu you must run: sudo apt-get install php5-cli" + echo "If you are using Fedora you must run: yum install php-cli" + echo "For support visit: http://www.phoronix.com/forums/forumdisplay.php?f=49\n\n" +fi + +task=$1 + +case "${task}" in +"gui") + php pts-core/pts-main.php + ;; +"install") + php pts-core/pts-install-benchmark.php $2 + ;; +"run") + php pts-core/pts-run-benchmark.php $2 + ;; +"benchmark") + php pts-core/pts-install-benchmark.php $2 + php pts-core/pts-run-benchmark.php $2 + ;; +"merge-results") + php pts-core/pts-merge-results.php $2 $3 $4 + ;; +"remove-result") + php pts-core/pts-run-cmd.php REMOVE_RESULT $2 + ;; +"upload") + php pts-core/pts-run-cmd.php UPLOAD_RESULT $2 + ;; +"list-tests") + php pts-core/pts-run-cmd.php LIST_TESTS + ;; +"list-suites") + php pts-core/pts-run-cmd.php LIST_SUITES + ;; +"list-saved-tests") + php pts-core/pts-run-cmd.php LIST_SAVED_TESTS + ;; +"remote-comparison") + php pts-core/pts-run-cmd.php REMOTE_COMPARISON $2 $3 + ;; +"build-php") + echo "TODO: Not Yet Implemented!" + ;; +*) + echo "\n=================================" + echo "Phoronix Test Suite Arguments" + echo "http://www.phoronix-test-suite.com/" + echo "=================================\n" + echo "gui: Launch The Phoronix Test Suite GUI" + echo "install : Install or Update The Specified Benchmark(s)" + echo "run : Run The Specified Benchmark/Suite" + echo "benchmark : Same as manually running install and then run" + echo "merge-results : Merge two saved result sets" + echo "remove-result : Remove this saved result file and associated files" + echo "list-tests: List all Phoronix Test Suite Benchmark profiles" + echo "list-suites: List all Phoronix Test Suites" + echo "list-saved-tests: List all saved results" + echo "upload : Upload these results to be shared globally" + echo "build-php: Build A Local Copy Of PHP For The Phoronix Test Suite" + echo "\n" + ;; +esac diff --git a/pts-core/functions/pts-functions-gtk.php b/pts-core/functions/pts-functions-gtk.php new file mode 100644 index 000000000..9ec196581 --- /dev/null +++ b/pts-core/functions/pts-functions-gtk.php @@ -0,0 +1,54 @@ +set_size_request(250, -1); + $box = $dialog->vbox; + $box->pack_start($hbox = new GtkHBox()); + $message_label = new GtkLabel($message); + $message_label->set_size_request(230, -1); + $message_label->set_line_wrap(true); + $hbox->pack_start($message_label); + $dialog->add_button(Gtk::STOCK_OK, Gtk::RESPONSE_OK); + $dialog->show_all(); + $dialog->run(); + $dialog->destroy(); +} +function gtk_benchmark_results($message) +{ + $dialog = new GtkDialog("Phoronix Test Suite", null, Gtk::DIALOG_MODAL); + $dialog->set_size_request(500, -1); + $box = $dialog->vbox; + $box->pack_start($hbox = new GtkHBox()); + $message_label = new GtkLabel($message); + $message_label->set_size_request(460, -1); + $message_label->set_line_wrap(true); + $hbox->pack_start($message_label); + $dialog->add_button(Gtk::STOCK_OK, Gtk::RESPONSE_OK); + $dialog->show_all(); + $dialog->run(); + $dialog->destroy(); +} +function combobox_select(&$button, $combobox) +{ + $model = $combobox->get_model(); + $selection = $model->get_value($combobox->get_active_iter(), 0); + $benchmark = pts_benchmark_name_to_identifier($selection); + + if(!$benchmark) + { + gtk_quick_alert("No benchmark selected!"); + } + else + { + echo exec("php pts-core/pts-benchmark-screen.php " . $benchmark); + } + +} + +?> diff --git a/pts-core/functions/pts-functions-install.php b/pts-core/functions/pts-functions-install.php new file mode 100644 index 000000000..fea9e5724 --- /dev/null +++ b/pts-core/functions/pts-functions-install.php @@ -0,0 +1,82 @@ +getXMLArrayValues("PTSuite/PTSBenchmark/Benchmark"); + + foreach($suite_benchmarks as $benchmark) + pts_recurse_install_benchmark($benchmark); + } + else if(is_file(pts_input_correct_results_path($TO_INSTALL))) + { + $xml_parser = new tandem_XmlReader(file_get_contents(pts_input_correct_results_path($TO_INSTALL))); + $suite_benchmarks = $xml_parser->getXMLArrayValues("PhoronixTestSuite/Benchmark/TestName"); + + foreach($suite_benchmarks as $benchmark) + { + pts_recurse_install_benchmark($benchmark); + } + } + else if(trim(file_get_contents("http://www.phoronix-test-suite.com/global/profile-check.php?id=$TO_INSTALL")) == "REMOTE_FILE") + { + $xml_parser = new tandem_XmlReader(file_get_contents("http://www.phoronix-test-suite.com/global/pts-results-viewer.php?id=$TO_INSTALL")); + $suite_benchmarks = $xml_parser->getXMLArrayValues("PhoronixTestSuite/Benchmark/TestName"); + + foreach($suite_benchmarks as $benchmark) + { + pts_recurse_install_benchmark($benchmark); + } + } + else + echo "\nNot recognized: $TO_INSTALL.\n"; +} +function pts_install_benchmark($Benchmark) +{ + if(pts_benchmark_type($Benchmark) != "BENCHMARK") + return; + + if(is_file(BENCHMARK_ENVIRONMENT . "$Benchmark/pts-install") && file_get_contents(BENCHMARK_ENVIRONMENT . "$Benchmark/pts-install") == md5_file(BENCHMARK_RESOURCE_LOCATION . "$Benchmark/install.sh")) + { + echo ucwords($Benchmark) . " is already installed, skipping installation routine...\n"; + } + else + { + if(is_file(BENCHMARK_RESOURCE_LOCATION . "$Benchmark/install.sh")) + { + if(!is_dir(BENCHMARK_ENVIRONMENT)) + { + mkdir(BENCHMARK_ENVIRONMENT); + } + if(!is_dir(BENCHMARK_ENVIRONMENT . $Benchmark)) + { + mkdir(BENCHMARK_ENVIRONMENT . $Benchmark); + } + if(!is_dir(BENCHMARK_ENVIRONMENT . "pts-shared")) + { + mkdir(BENCHMARK_ENVIRONMENT . "pts-shared"); + } + + echo "\n=================================\n"; + echo "Installing Benchmark: $Benchmark"; + echo "\n=================================\n"; + echo pts_exec("cd " . BENCHMARK_RESOURCE_LOCATION . "$Benchmark/ && sh install.sh " . BENCHMARK_ENVIRONMENT . $Benchmark) . "\n"; + + file_put_contents(BENCHMARK_ENVIRONMENT . "$Benchmark/pts-install", md5_file(BENCHMARK_RESOURCE_LOCATION . "$Benchmark/install.sh")); + } + else + echo ucwords($Benchmark) . " has no installation script, skipping installation routine...\n"; + } +} + +?> diff --git a/pts-core/functions/pts-functions-merge.php b/pts-core/functions/pts-functions-merge.php new file mode 100644 index 000000000..2def01141 --- /dev/null +++ b/pts-core/functions/pts-functions-merge.php @@ -0,0 +1,165 @@ +getXMLArrayValues("PhoronixTestSuite/System/Hardware"); + $new_system_software = $new_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/Software"); + $new_system_author = $new_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/Author"); + $new_system_notes = $new_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/TestNotes"); + $new_system_date = $new_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/TestDate"); + $new_pts_version = $new_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/Version"); + $new_associated_identifiers = $new_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/AssociatedIdentifiers"); + $new_results_raw = $new_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/Results"); + + $new_suite_name = $new_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Name"); + $new_suite_version = $new_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Version"); + $new_suite_title = $new_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Title"); + $new_suite_description = $new_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Description"); + $new_suite_type = $new_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Type"); + $new_suite_maintainer = $new_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Maintainer"); + + $new_results_identifiers = array(); + $new_results_values = array(); + + foreach($new_results_raw as $new_result_raw) + { + $new_xml_results = new tandem_XmlReader($new_result_raw); + array_push($new_results_identifiers, $new_xml_results->getXMLArrayValues("Group/Entry/Identifier")); + array_push($new_results_values, $new_xml_results->getXMLArrayValues("Group/Entry/Value")); + } + unset($NEW_RESULTS, $new_xml_reader, $new_results_raw); + + + // READ ORIGINAL RESULTS + $original_xml_reader = new tandem_XmlReader($OLD_RESULTS); + $original_system_hardware = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/Hardware"); + $original_system_software = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/Software"); + $original_system_author = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/Author"); + $original_system_notes = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/TestNotes"); + $original_system_date = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/TestDate"); + $original_pts_version = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/Version"); + $original_associated_identifiers = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/System/AssociatedIdentifiers"); + $original_results_raw = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/Results"); + + $original_suite_name = $original_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Name"); + $original_suite_version = $original_xml_reader->getXMLValue("PhoronixTestSuite/Suite/Version"); + + $original_results_name = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/Name"); + $original_results_version = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/Version"); + $original_results_attributes = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/Attributes"); + $original_results_scale = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/Scale"); + $original_results_testname = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/TestName"); + $original_results_arguments = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/TestArguments"); + $original_results_proportion = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/Proportion"); + $original_results_result_format = $original_xml_reader->getXMLArrayValues("PhoronixTestSuite/Benchmark/ResultFormat"); + + $original_results_identifiers = array(); + $original_results_values = array(); + + foreach($original_results_raw as $original_result_raw) + { + $original_xml_results = new tandem_XmlReader($original_result_raw); + array_push($original_results_identifiers, $original_xml_results->getXMLArrayValues("Group/Entry/Identifier")); + array_push($original_results_values, $original_xml_results->getXMLArrayValues("Group/Entry/Value")); + } + unset($OLD_RESULTS, $original_xml_reader, $original_results_raw); + + $RESULTS = new tandem_XmlWriter(); + + $RESULTS->setXslBinding("pts-results-viewer/pts-results-viewer.xsl"); + + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Title", 0, $new_suite_title); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Name", 0, $new_suite_name); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Version", 0, $new_suite_version); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Description", 0, $new_suite_description); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Type", 0, $new_suite_type); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Maintainer", 0, $new_suite_maintainer); + + // TODO: ADD MORE COMPATIBILITY CHECKS!!!! + + if(count($original_system_hardware) == 1 && count($new_system_hardware) == 1 && $original_system_hardware[0] == $new_system_hardware[0] && $original_system_software[0] == $new_system_software[0] && $original_pts_version[0] == $new_pts_version[0]) + { + $USE_ID = pts_request_new_id(); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Hardware", $USE_ID, $original_system_hardware[0]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Software", $USE_ID, $original_system_software[0]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Author", $USE_ID, $original_system_author[0]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestDate", $USE_ID, date("F j, Y h:i A")); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestNotes", $USE_ID, $original_system_notes[0]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Version", $USE_ID, $original_pts_version[0]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/AssociatedIdentifiers", $USE_ID, $original_associated_identifiers[0] . "," . $new_associated_identifiers[0]); + } + else + { + for($i = 0; $i < count($original_system_hardware); $i++) + { + $USE_ID = pts_request_new_id(); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Hardware", $USE_ID, $original_system_hardware[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Software", $USE_ID, $original_system_software[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Author", $USE_ID, $original_system_author[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestDate", $USE_ID, $original_system_date[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestNotes", $USE_ID, $original_system_notes[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Version", $USE_ID, $original_pts_version[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/AssociatedIdentifiers", $USE_ID, $original_associated_identifiers[$i]); + } + for($i = 0; $i < count($new_system_hardware); $i++) + { + $USE_ID = pts_request_new_id(); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Hardware", $USE_ID, $new_system_hardware[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Software", $USE_ID, $new_system_software[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Author", $USE_ID, $new_system_author[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestDate", $USE_ID, $new_system_date[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestNotes", $USE_ID, $new_system_notes[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Version", $USE_ID, $new_pts_version[$i]); + $RESULTS->addXmlObject("PhoronixTestSuite/System/AssociatedIdentifiers", $USE_ID, $new_associated_identifiers[$i]); + } + } + + for($b = 0; $b < count($original_results_identifiers); $b++) + { + $USE_ID = pts_request_new_id(); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Name", $USE_ID, $original_results_name[$b]); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Version", $USE_ID, $original_results_version[$b]); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Attributes", $USE_ID, $original_results_attributes[$b]); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Scale", $USE_ID, $original_results_scale[$b]); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Proportion", $USE_ID, $original_results_proportion[$b]); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/TestName", $USE_ID, $original_results_testname[$b]); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/TestArguments", $USE_ID, $original_results_arguments[$b]); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/ResultFormat", $USE_ID, $original_results_result_format[$b]); + + for($o = 0; $o < count($original_results_identifiers[$b]); $o++) + { + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Results/Group/Entry/Identifier", $USE_ID, $original_results_identifiers[$b][$o], 5, "o-$b-$o"); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Results/Group/Entry/Value", $USE_ID, $original_results_values[$b][$o], 5, "o-$b-$o"); + } + + for($o = 0; $o < count($new_results_identifiers[$b]); $o++) + { + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Results/Group/Entry/Identifier", $USE_ID, $new_results_identifiers[$b][$o], 5, "n-$b-$o"); + $RESULTS->addXmlObject("PhoronixTestSuite/Benchmark/Results/Group/Entry/Value", $USE_ID, $new_results_values[$b][$o], 5, "n-$b-$o"); + } + } + + return $RESULTS->getXML(); +} + +?> diff --git a/pts-core/functions/pts-functions-run.php b/pts-core/functions/pts-functions-run.php new file mode 100644 index 000000000..f2a2b644b --- /dev/null +++ b/pts-core/functions/pts-functions-run.php @@ -0,0 +1,183 @@ +getXMLArrayValues("PTSuite/PTSBenchmark/Benchmark"); + $sub_arguments = $xml_parser->getXMLArrayValues("PTSuite/PTSBenchmark/Arguments"); + $sub_arguments_description = $xml_parser->getXMLArrayValues("PTSuite/PTSBenchmark/Description"); + + pts_recurse_call_benchmark($sub_suite_benchmarks, $sub_arguments, $save_results, $tandem_xml, $results_identifier, $sub_arguments_description); + } + else + { + $test_result = pts_run_benchmark($benchmarks_array[$i], $arguments_array[$i]); + + if($save_results) + pts_save_benchmark_result($tandem_xml, $benchmarks_array[$i], $arguments_array[$i], $results_identifier, $test_result, $arguments_description[$i], pts_request_new_id()); + + if($i != (count($benchmarks_array) - 1)) + sleep(pts_read_user_config("PhoronixTestSuite/Options/Benchmarking/SleepTimeBetweenTests", 5)); + } + } +} +function pts_save_benchmark_result(&$tandem_xml, $benchmark, $arguments, $identifier, $result, $description, $tandem_id = 128) +{ + if($result > -1 && strlen($result) < 12) + { + global $BENCHMARK_RAN; + + $xml_parser = new tandem_XmlReader(file_get_contents(XML_PROFILE_LOCATION . $benchmark . ".xml")); + $benchmark_title = $xml_parser->getXMLValue("PTSBenchmark/Information/Title"); + $benchmark_version = $xml_parser->getXMLValue("PTSBenchmark/Information/Version"); + $result_scale = $xml_parser->getXMLValue("PTSBenchmark/Information/ResultScale"); + $proportion = $xml_parser->getXMLValue("PTSBenchmark/Information/Proportion"); + $default_arguments = $xml_parser->getXMLValue("PTSBenchmark/Settings/Default/Arguments"); + unset($xml_parser); + + if(empty($description)) + $description = "Phoronix Test Suite v" . PTS_VERSION; + + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/Name", $tandem_id, $benchmark_title); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/Version", $tandem_id, $benchmark_version); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/Attributes", $tandem_id, $description); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/Scale", $tandem_id, $result_scale); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/Proportion", $tandem_id, $proportion); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/ResultFormat", $tandem_id, "BAR_GRAPH"); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/TestName", $tandem_id, $benchmark); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/TestArguments", $tandem_id, trim($default_arguments . " " . $arguments)); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/Results/Group/Entry/Identifier", $tandem_id, $identifier, 5); + $tandem_xml->addXmlObject("PhoronixTestSuite/Benchmark/Results/Group/Entry/Value", $tandem_id, $result, 5); + + $BENCHMARK_RAN = true; + } +} +function pts_save_benchmark_file($PROPOSED_FILE_NAME, &$RESULTS = null, $RAW_TEXT = null) +{ + $j = 1; + while(is_file(SAVE_RESULTS_LOCATION . "$PROPOSED_FILE_NAME-$j.xml")) + $j++; + + $REAL_FILE_NAME = $PROPOSED_FILE_NAME . '-' . $j; + + if($RESULTS != null) + $R_FILE = $RESULTS->getXML(); + else if($RAW_TEXT != null) + $R_FILE = $RAW_TEXT; + else + return false; + + pts_save_result("$REAL_FILE_NAME.xml", $R_FILE); + + if(!is_file(SAVE_RESULTS_LOCATION . "$PROPOSED_FILE_NAME.xml")) + copy(SAVE_RESULTS_LOCATION . "$REAL_FILE_NAME.xml", SAVE_RESULTS_LOCATION . "$PROPOSED_FILE_NAME.xml"); + else + { + // Merge Results + $MERGED_RESULTS = pts_merge_benchmarks(file_get_contents(SAVE_RESULTS_LOCATION . "$PROPOSED_FILE_NAME.xml"), file_get_contents(SAVE_RESULTS_LOCATION . "$REAL_FILE_NAME.xml")); + pts_save_result("$PROPOSED_FILE_NAME.xml", $MERGED_RESULTS); + } + return $REAL_FILE_NAME; +} +function pts_run_benchmark($benchmark_identifier, $extra_arguments = "") +{ + if(pts_process_active($benchmark_identifier)) + { + echo "\nThis benchmark ($benchmark_identifier) is already running... Please wait until the first instance is finished.\n"; + return 0; + } + pts_process_register($benchmark_identifier); + + $xml_parser = new tandem_XmlReader(file_get_contents(XML_PROFILE_LOCATION . "$benchmark_identifier.xml")); + $execute_binary = $xml_parser->getXMLValue("PTSBenchmark/Information/Executable"); + $benchmark_title = $xml_parser->getXMLValue("PTSBenchmark/Information/Title"); + $times_to_run = intval($xml_parser->getXMLValue("PTSBenchmark/Information/TimesToRun")); + $pre_run_message = $xml_parser->getXMLValue("PTSBenchmark/Information/PreRunMessage"); + $result_scale = $xml_parser->getXMLValue("PTSBenchmark/Information/ResultScale"); + $arg_identifier = $xml_parser->getXMLArrayValues("PTSBenchmark/Settings/Option/Identifier"); + $execute_path = $xml_parser->getXMLValue("PTSBenchmark/Settings/Default/PossiblePaths"); + $default_arguments = $xml_parser->getXMLValue("PTSBenchmark/Settings/Default/Arguments"); + + if(empty($times_to_run) || !is_int($times_to_run)) + $times_to_run = 1; + + if(is_file(BENCHMARK_ENVIRONMENT . "$benchmark_identifier/$execute_binary") || is_link(BENCHMARK_ENVIRONMENT . "$benchmark_identifier/$execute_binary")) + $to_execute = BENCHMARK_ENVIRONMENT . "$benchmark_identifier/"; + else if(is_file($execute_path . $execute_binary) || is_link($execute_path . $execute_binary)) //TODO: Support multiple paths in PossiblePaths separated by : delimiter. + $to_execute = $execute_path; + else + { + echo "This application executable could not be found in " . $execute_path . ". or " . BENCHMARK_ENVIRONMENT . "$benchmark_identifier/.\nBenchmark terminating."; + return; + } + + if(is_dir(BENCHMARK_ENVIRONMENT . "$benchmark_identifier/") && file_get_contents(BENCHMARK_ENVIRONMENT . "$benchmark_identifier/pts-install") != md5_file(BENCHMARK_RESOURCE_LOCATION . "$benchmark_identifier/install.sh")) + { + echo "\n=================================\nNOTE: Your benchmarking installation is out of date!\nFor best results, the $benchmark_title benchmark should be reinstalled.\n=================================\n\n"; + + // Auto reinstall + //require_once("pts-core/functions/pts-functions-run.php"); + //pts_install_benchmark($benchmark_identifier); + } + + $PTS_BENCHMARK_ARGUMENTS = trim($default_arguments . " " . $extra_arguments); + $BENCHMARK_RESULTS_ARRAY = array(); + + if(is_file(BENCHMARK_RESOURCE_LOCATION . $benchmark_identifier . "/pre.sh")) + { + echo "\n=================================\nExecuting Pre-Benchmark Tasks\n=================================\n"; + echo shell_exec("sh " . BENCHMARK_RESOURCE_LOCATION . $benchmark_identifier . "/pre.sh " . BENCHMARK_ENVIRONMENT . "$benchmark_identifier"); + } + + if(!empty($pre_run_message)) + { + echo "\n=================================\nPre-Run Message\n=================================\n"; + echo $pre_run_message . "\n"; + echo "\nHit Any Key To Continue Benchmarking.\n"; + fgets(STDIN); + } + + for($i = 0; $i < $times_to_run; $i++) + { + echo "\n=================================\n$benchmark_title Benchmark (Run " . ($i + 1) . " of " . $times_to_run . ")\n=================================\n"; + $result_output = array(); + + echo $BENCHMARK_RESULTS = pts_exec("cd $to_execute; ./$execute_binary $PTS_BENCHMARK_ARGUMENTS"); + + if(is_file(BENCHMARK_RESOURCE_LOCATION . $benchmark_identifier . "/parse-results.php")) + { + $BENCHMARK_RESULTS = pts_exec("cd " . BENCHMARK_RESOURCE_LOCATION . $benchmark_identifier . "/ && php parse-results.php \"$BENCHMARK_RESULTS\""); + } + array_push($BENCHMARK_RESULTS_ARRAY, $BENCHMARK_RESULTS); + } + + if(is_file(BENCHMARK_RESOURCE_LOCATION . $benchmark_identifier . "/post.sh")) + { + echo "\n=================================\nExecuting Post-Benchmark Tasks\n=================================\n"; + echo pts_exec("sh " . BENCHMARK_RESOURCE_LOCATION . $benchmark_identifier . "/post.sh " . BENCHMARK_ENVIRONMENT . "$benchmark_identifier"); + } + + // End + $RETURN_STRING = "$benchmark_title Results:\n\n"; + + $TOTAL_RESULT = 0; + foreach($BENCHMARK_RESULTS_ARRAY as $result) + { + $TOTAL_RESULT += $result; + $RETURN_STRING .= $result . " $result_scale\n"; + } + + $AVG_RESULT = bcdiv($TOTAL_RESULT / sizeof($BENCHMARK_RESULTS_ARRAY), 1, 2); + $RETURN_STRING .= "\nAverage: $AVG_RESULT $result_scale"; + + echo "\n=================================\n$RETURN_STRING\n=================================\n"; + pts_process_remove($benchmark_identifier); + return $AVG_RESULT; +} + +?> diff --git a/pts-core/functions/pts-functions.php b/pts-core/functions/pts-functions.php new file mode 100644 index 000000000..108e63158 --- /dev/null +++ b/pts-core/functions/pts-functions.php @@ -0,0 +1,286 @@ +. +*/ + +define("PTS_VERSION", "0.1.0"); +define("PTS_LINE", "PTSV1LD"); +define("PTS_TYPE", "DESKTOP"); + +define("THIS_RUN_TIME", time()); + +define("XML_PROFILE_LOCATION", "pts/benchmark-profiles/"); +define("XML_SUITE_LOCATION", "pts/benchmark-suites/"); +define("BENCHMARK_RESOURCE_LOCATION", "pts/benchmark-resources/"); +define("BENCHMARK_ENVIRONMENT", pts_find_home(pts_read_user_config("PhoronixTestSuite/Options/Benchmarking/EnvironmentDirectory", "~/benchmark-env/"))); +define("SAVE_RESULTS_LOCATION", pts_find_home(pts_read_user_config("PhoronixTestSuite/Options/Benchmarking/ResultsDirectory", "test-results/"))); + +// Load OS-specific functions +require_once("pts-core/functions/pts-functions_linux.php"); + +// Etc +$PTS_GLOBAL_ID = 1; + +if(pts_process_active("phoronix-test-suite")) +{ + echo "\nWARNING: It appears that the Phoronix Test Suite is already running.\nFor proper results, only run one instance at a time.\n"; +} +pts_process_register("phoronix-test-suite"); +register_shutdown_function("pts_process_remove", "phoronix-test-suite"); + +function __autoload($to_load) +{ + if(is_file("pts-core/objects/$to_load.php")) + require_once("pts-core/objects/$to_load.php"); +} + +// Phoronix Test Suite - Functions +function pts_find_home($path) +{ + if(strpos($path, '~') !== FALSE) + { + $whoami = trim(shell_exec("whoami")); + + if($whoami == "root") + $home_path = "/root"; + else + $home_path = "/home/$whoami"; + + $path = str_replace('~', $home_path, $path); + } + return $path; +} +function pts_current_user() +{ + $pts_user = pts_read_user_config("PhoronixTestSuite/GlobalDatabase/UserName", "Default User"); + + if($pts_user == "Default User") + $pts_user = trim(shell_exec("whoami")); + + return $pts_user; +} +function pts_benchmark_names_to_array() +{ + $benchmark_names = array(); + foreach(glob(XML_PROFILE_LOCATION . "*.xml") as $benchmark_file) + { + $xml_parser = new tandem_XmlReader(file_get_contents($benchmark_file)); + $benchmark_name = $xml_parser->getXMLValue("PTSBenchmark/Information/Title"); + + if(!empty($benchmark_name)) + array_push($benchmark_names, $benchmark_name); + } + return $benchmark_names; +} +function pts_suite_names_to_array() +{ + $benchmark_suites = array(); + foreach(glob(XML_SUITE_LOCATION . "*.xml") as $benchmark_file) + { + $xml_parser = new tandem_XmlReader(file_get_contents($benchmark_file)); + $benchmark_name = $xml_parser->getXMLValue("PTSuite/PhoronixTestSuite/Title"); + + if(!empty($benchmark_name)) + array_push($benchmark_suites, $benchmark_name); + } + return $benchmark_suites; +} +function pts_benchmark_name_to_identifier($name) +{ + if(empty($name)) + return false; + + foreach(glob(XML_PROFILE_LOCATION . "*.xml") as $benchmark_file) + { + $xml_parser = new tandem_XmlReader(file_get_contents($benchmark_file)); + if($xml_parser->getXMLValue("PTSBenchmark/Information/Title") == $name) + return $xml_parser->getXMLValue("PTSBenchmark/Information/Identifier"); + } + return false; +} +function pts_benchmark_identifier_to_name($identifier) +{ + if(empty($identifier)) + return false; + + if(is_file(XML_PROFILE_LOCATION . "$identifier.xml")) + { + $xml_parser = new tandem_XmlReader(file_get_contents(XML_PROFILE_LOCATION . $identifier . ".xml")); + if($xml_parser->getXMLValue("PTSBenchmark/Information/Identifier") == $identifier) + return $xml_parser->getXMLValue("PTSBenchmark/Information/Title"); + } + return false; +} +function pts_benchmark_type($identifier) +{ + if(empty($identifier)) + return false; + + if(is_file(XML_PROFILE_LOCATION . $identifier . ".xml")) + return "BENCHMARK"; + else if(is_file(XML_SUITE_LOCATION . $identifier . ".xml")) + return "TEST_SUITE"; + else + return false; +} +function pts_save_result($save_to, $save_results) +{ + if(!is_dir(SAVE_RESULTS_LOCATION)) + mkdir(SAVE_RESULTS_LOCATION); + + if(!is_dir(SAVE_RESULTS_LOCATION . "pts-results-viewer")) + { + mkdir(SAVE_RESULTS_LOCATION . "pts-results-viewer"); // TODO: Clean this up + copy("pts-core/pts-results-viewer/phoronix-test-suite.gif", SAVE_RESULTS_LOCATION . "pts-results-viewer/phoronix-test-suite.gif"); + copy("pts-core/pts-results-viewer/pts.js", SAVE_RESULTS_LOCATION . "pts-results-viewer/pts.js"); + copy("pts-core/pts-results-viewer/pts-results-viewer.xsl", SAVE_RESULTS_LOCATION . "pts-results-viewer/pts-results-viewer.xsl"); + copy("pts-core/pts-results-viewer/pts-viewer.css", SAVE_RESULTS_LOCATION . "pts-results-viewer/pts-viewer.css"); + } + + return file_put_contents(SAVE_RESULTS_LOCATION . $save_to, $save_results); +} +function pts_process_register($process) +{ + if(!is_dir(BENCHMARK_ENVIRONMENT)) + mkdir(BENCHMARK_ENVIRONMENT); + if(!is_dir(BENCHMARK_ENVIRONMENT . ".processes")) + mkdir(BENCHMARK_ENVIRONMENT . ".processes"); + + return file_put_contents(BENCHMARK_ENVIRONMENT . ".processes/$process.p", time()); +} +function pts_process_remove($process) +{ + if(is_file(BENCHMARK_ENVIRONMENT . ".processes/$process.p")) + return unlink(BENCHMARK_ENVIRONMENT . ".processes/$process.p"); +} +function pts_process_active($process) +{ + if(is_file(BENCHMARK_ENVIRONMENT . ".processes/$process.p")) + { + $process_time = intval(file_get_contents(BENCHMARK_ENVIRONMENT . ".processes/$process.p")); + + if((time() - $process_time) < 30) // TODO: Replace Lock With Pid based instead of time. + return true; + pts_process_remove($process); + } + return false; +} +function display_web_browser($URL) +{ + echo "Do you want to view the results in your web browser (Y/n)? "; + $VIEW_RESULTS = strtolower(trim(fgets(STDIN))); + + if($VIEW_RESULTS == "y") + shell_exec("firefox $URL &"); +} +function pts_env_variables() +{ + return array( + "PTS_TYPE" => PTS_TYPE, + "PTS_LINE" => PTS_LINE, + "PTS_VERSION" => PTS_VERSION, + "NUM_CPU_CORES" => cpu_core_count(), + "NUM_CPU_JOBS" => cpu_job_count(), + "MEM_CAPACITY" => memory_mb_capacity(), + "SCREEN_WIDTH" => current_screen_width(), + "SCREEN_HEIGHT" => current_screen_height(), + "OS" => os_vendor(), + "OS_VERSION" => os_version(), + "OS_ARCH" => kernel_arch(), + "THIS_RUN_TIME" => THIS_RUN_TIME + ); +} +function pts_hw_string() +{ + $hw_string = "Processor: " . processor_string() . " (Total Cores: " . cpu_core_count() . "), "; + $hw_string .= "Motherboard Chipset: " . motherboard_chipset_string() . ", "; + $hw_string .= "System Memory: " . memory_mb_capacity() . "MB, "; + $hw_string .= "Graphics: " . graphics_processor_string() . ", "; + $hw_string .= "Screen Resolution: " . current_screen_width() . "x" . current_screen_height() . " "; + + return $hw_string; +} +function pts_sw_string() +{ + $sw_string = "OS: " . operating_system_release() . ", "; + $sw_string .= "Kernel: " . kernel_string() . " (" . kernel_arch() . "), "; + $sw_string .= "X.Org Server: " . graphics_subsystem_version() . ", "; + $sw_string .= "Compiler: " . compiler_version() . " "; + + return $sw_string; +} +function pts_input_correct_results_path($path) +{ + if(strpos($path, '/') === FALSE) + { + $path = SAVE_RESULTS_LOCATION . $path; + } + if(strpos($MERGE_TO, ".xml") === FALSE) + { + $path = $path . ".xml"; + } + return $path; +} +function pts_variables_export_string($vars = null) +{ + $return_string = ""; + + if($vars == null) + $vars = pts_env_variables(); + else + $vars = array_merge(pts_env_variables(), $vars); + + foreach($vars as $name => $var) + { + $return_string .= "export $name=$var;"; + } + return $return_string . " "; +} +function pts_exec($exec, $extra_vars = null) +{ + return shell_exec(pts_variables_export_string($extra_vars) . "$exec"); +} +function pts_read_user_config($xml_pointer, $value = null) +{ + if(is_file("user-config.xml")) + if(($file = file_get_contents("user-config.xml")) != FALSE) + { + $xml_parser = new tandem_XmlReader($file); + unset($file); + $temp_value = $xml_parser->getXmlValue($xml_pointer); + + if(!empty($temp_value)) + $value = $temp_value; + } + + return $value; +} +function pts_request_new_id() +{ + global $PTS_GLOBAL_ID; + $PTS_GLOBAL_ID++; + + return $PTS_GLOBAL_ID; +} +function operating_system_release() +{ + return os_vendor() . " " . os_version(); +} + + +?> diff --git a/pts-core/functions/pts-functions_linux.php b/pts-core/functions/pts-functions_linux.php new file mode 100644 index 000000000..d7b7354b2 --- /dev/null +++ b/pts-core/functions/pts-functions_linux.php @@ -0,0 +1,143 @@ + 32) + $info = "N/A"; + + return $info; +} +function os_vendor() +{ + return parse_lsb_output("DISTRIB_ID="); +} +function os_version() +{ + return parse_lsb_output("DISTRIB_RELEASE="); +} +function kernel_string() +{ + return trim(shell_exec("uname -r")); +} +function kernel_arch() +{ + return trim(shell_exec("uname -m")); +} +function graphics_processor_string() +{ + return parse_lspci_output("VGA compatible controller:"); +} +function motherboard_chipset_string() +{ + return parse_lspci_output("Host bridge:"); +} +function parse_lspci_output($desc) +{ + $info = shell_exec("lspci"); + $info = substr($info, strpos($info, $desc) + strlen($desc)); + $EOL = strpos($info, "\n"); + + if(($temp = strpos($info, '/')) < $EOL && $temp > 0) + if(($temp = strpos($info, ' ', ($temp + 2))) < $EOL && $temp > 0) + $EOL = $temp; + + if(($temp = strpos($info, '(')) < $EOL && $temp > 0) + $EOL = $temp; + + if(($temp = strpos($info, '[')) < $EOL && $temp > 0) + $EOL = $temp; + + $info = trim(substr($info, 0, $EOL)); + + if(($strlen = strlen($info)) < 6 || $strlen > 96) + $info = "N/A"; + else + $info = str_replace(array("Corporation ", "Technologies ", " Inc ", "processor ", "(R)", "(TM)"), "", $info); + + return $info; +} +function graphics_subsystem_version() +{ + $info = shell_exec("X -version 2>&1"); + $info = trim(substr($info, 0, strrpos($info, "Release Date"))); + $info = trim(substr($info, strrpos($info, " "))); + + return $info; +} +function compiler_version() +{ + $info = shell_exec("gcc -v 2>&1"); + + if(($pos = strpos($info, "gcc version")) === FALSE) + { + $info = "N/A"; + } + else + { + $info = substr($info, $pos + 11); + $info = trim(substr($info, 0, strpos($info, " ", strpos($info, ".")))); + } + + return "GCC " . $info; +} + +?> diff --git a/pts-core/objects/tandem_XmlReader.php b/pts-core/objects/tandem_XmlReader.php new file mode 100644 index 000000000..3e1ab4480 --- /dev/null +++ b/pts-core/objects/tandem_XmlReader.php @@ -0,0 +1,127 @@ +XML_DATA = $XML; + } + function getStatement($STATEMENT_NAME) + { + return $this->listStatements(TRUE, $STATEMENT_NAME); + } + function listStatements($SEARCH_DO = FALSE, $SEARCH_QUERY = "") + { + // TODO: add check to make sure it doesn't occur in XML, but before XML start after XML declaration + + $XML_COPY = $this->XML_DATA; + preg_match_all("''si", $XML_COPY, $STATEMENT_MATCHES); + + $RETURN_ARRAY = array(); + + foreach($STATEMENT_MATCHES[0] as $statement) + { + $name = substr($statement, 0, strpos($statement, ':')); + $name = trim(strstr($name, ' ')); + + if($SEARCH_DO) + { + if($name == $SEARCH_QUERY) + { + $value = strstr($statement, ':'); + $value = trim(substr($value, 1, strpos($value, "-->") - 1)); + + array_push($RETURN_ARRAY, $value); + } + } + else + { + array_push($RETURN_ARRAY, $name); + } + } + return $RETURN_ARRAY; + } + function getXMLValue($XML_TAG) + { + return $this->getValue($XML_TAG, $this->XML_DATA); + } + function getValue($XML_TAG, $XML_MATCH) + { + $XML_LOCATION_OFFSET = 0; + + do + { + $LOCATION_NEXT_DEPTH = strpos($XML_TAG, '/', $XML_LOCATION_OFFSET); + + if($LOCATION_NEXT_DEPTH === FALSE) + $LOCATION_NEXT_DEPTH = strlen($XML_TAG); + + $THIS_XML_TAG = substr($XML_TAG, $XML_LOCATION_OFFSET, $LOCATION_NEXT_DEPTH - $XML_LOCATION_OFFSET); + preg_match("'<$THIS_XML_TAG>(.*?)'si", $XML_MATCH, $NEW_MATCH); + + if(sizeof($NEW_MATCH) > 1) + $XML_MATCH = $NEW_MATCH[1]; + else + $XML_MATCH = null; + + $XML_LOCATION_OFFSET = $LOCATION_NEXT_DEPTH + 1; + } + while($XML_LOCATION_OFFSET < strlen($XML_TAG)); + + return $XML_MATCH; + } + function getXMLArrayValues($XML_TAG) + { + return $this->getArrayValues($XML_TAG, $this->XML_DATA); + } + function getArrayValues($XML_TAG, $XML_MATCH) + { + $XML_ARRAY_VALUES = $this->LocationHierarchyToArray($XML_TAG); + $THIS_XML_CONTENTS = $XML_MATCH; + + for($i = 0; $i < sizeof($XML_ARRAY_VALUES) - 2; $i++) + $THIS_XML_CONTENTS = $this->getValue($XML_ARRAY_VALUES[$i], $THIS_XML_CONTENTS); + + $LAST_XML_VALUE = $XML_ARRAY_VALUES[sizeof($XML_ARRAY_VALUES) - 2]; + + preg_match_all("'<$LAST_XML_VALUE>(.*?)'si", $THIS_XML_CONTENTS, $XML_MATCHES); + + $RETURN_ARRAY = array(); + + for($i = 0; $i < sizeof($XML_MATCHES[1]); $i++) + { + $THIS_ITEM = $this->getValue(end($XML_ARRAY_VALUES), $XML_MATCHES[1][$i]); + + // if(!empty($THIS_ITEM)) + array_push($RETURN_ARRAY, $THIS_ITEM); + } + + return $RETURN_ARRAY; + } + function LocationHierarchyToArray($LOCATION) + { + $RETURN_ARRAY = array(); + $TEMP_LOCATION = $LOCATION; + + while(($POS_NEXT_DELIMITER = strpos($TEMP_LOCATION, '/')) !== FALSE) + { + array_push($RETURN_ARRAY, substr($TEMP_LOCATION, 0, $POS_NEXT_DELIMITER)); + $TEMP_LOCATION = substr($TEMP_LOCATION, $POS_NEXT_DELIMITER + 1); + } + + if(!empty($TEMP_LOCATION)) + array_push($RETURN_ARRAY, $TEMP_LOCATION); + + return $RETURN_ARRAY; + } +} +?> diff --git a/pts-core/objects/tandem_XmlWriter.php b/pts-core/objects/tandem_XmlWriter.php new file mode 100644 index 000000000..22537b4d0 --- /dev/null +++ b/pts-core/objects/tandem_XmlWriter.php @@ -0,0 +1,157 @@ +FORMAT_XML = $NICE_FORMATTING; + } + function setXslBinding($URL) + { + $this->XSL_BINDING = $URL; + } + function addXmlObject($XML_LOCATION, $UNIQUE_IDENTIFIER = 0, $XML_VALUE, $STD_STEP = null, $STEP_ID = null) + { + $XML_ARRAY = array(); + $ALT_STEP = -1; + $steps = 0; + + if($STD_STEP == null) + $STD_STEP = 2; + if($STEP_ID == null) + $STEP_ID = $UNIQUE_IDENTIFIER; + + if(array_search("$UNIQUE_IDENTIFIER,$XML_LOCATION", $this->XML_STRING_PATHS) !== FALSE) + $ALT_STEP = 2; + else + array_push($this->XML_STRING_PATHS, "$UNIQUE_IDENTIFIER,$XML_LOCATION"); + + do + { + $steps++; + $NEXT_POS = strrpos($XML_LOCATION, '/'); + $CURRENT_TAG = substr($XML_LOCATION, ($NEXT_POS !== FALSE) ? $NEXT_POS + 1 : 0); + $XML_LOCATION = substr($XML_LOCATION, 0, $NEXT_POS); + + if(empty($XML_ARRAY)) + { + $XML_ARRAY = $XML_VALUE; + } + + if(!empty($CURRENT_TAG)) + $XML_ARRAY = array("$CURRENT_TAG" => $XML_ARRAY); + + if($steps == $STD_STEP) + $XML_ARRAY = array("id_$UNIQUE_IDENTIFIER" => $XML_ARRAY); + if($steps == $ALT_STEP) + $XML_ARRAY = array("id_$STEP_ID" => $XML_ARRAY); + } + while($NEXT_POS !== FALSE); + + $this->XML_OBJECTS = array_merge_recursive($this->XML_OBJECTS, $XML_ARRAY); + } + function addStatement($STATEMENT_NAME, $STATEMENT_VALUE) + { + array_push($this->XML_STATEMENTS, trim($STATEMENT_NAME . ": " . $STATEMENT_VALUE)); + } + function getXMLStatements() + { + $RETURN_STRING = ""; + + $PRINT_STATEMENTS = array_reverse($this->XML_STATEMENTS); + + foreach($PRINT_STATEMENTS as $statement) + { + $RETURN_STRING .= "" . "\n"; + } + + return $RETURN_STRING; + } + function getXML() + { + $FORMATTED_XML = $this->getXMLBelow($this->XML_OBJECTS, 0); + + $this->addStatement("Generated", date("Y-m-d H:i:s")); + $this->addStatement("Checksum", md5($FORMATTED_XML)); + + return "\n" . $this->getXSL() . $this->getXMLStatements() . $FORMATTED_XML; + } + function getXSL() + { + if($this->XSL_BINDING != null) + { + return "XSL_BINDING . "\" ?>\n"; + } + } + function getJustXML() + { + return $this->getXMLBelow($this->XML_OBJECTS, 0); + } + function getXMLBelow($XML_ARRAY, $TIMES_DEEP) + { + $FORMATTED_XML = ""; + + foreach($XML_ARRAY as $KEY => $VALUE) + if(!is_array($VALUE)) + { + $FORMATTED_XML .= $this->getXMLTabs($TIMES_DEEP) . "<$KEY>$VALUE" . $this->getXMLBreaks(); + } + else + { + if(substr($KEY, 0, 3) === "id_") + $FORMATTED_XML .= $this->getXMLBelow($VALUE, $TIMES_DEEP); + else + { + $FORMATTED_XML .= $this->getXMLTabs($TIMES_DEEP) . "<$KEY>" . $this->getXMLBreaks(); + $FORMATTED_XML .= $this->getXMLBelow($VALUE, $TIMES_DEEP + 1); + $FORMATTED_XML .= $this->getXMLTabs($TIMES_DEEP) . "" . $this->getXMLBreaks(); + } + + } + + return $FORMATTED_XML; + } + function getXMLTabs($TIMES_DEEP) + { + if($this->FORMAT_XML !== TRUE) + return; + + $RETURN_FORMAT = ""; + + for($i = 0; $i < $TIMES_DEEP; $i++) + $RETURN_FORMAT .= "\t"; + + return $RETURN_FORMAT; + } + function getXMLBreaks() + { + if($this->FORMAT_XML !== TRUE) + return; + + return "\n"; + } + function debugDumpArray() + { + return $this->XML_OBJECTS; + } +} + +?> diff --git a/pts-core/pts-benchmark-screen.php b/pts-core/pts-benchmark-screen.php new file mode 100644 index 000000000..1af49bb49 --- /dev/null +++ b/pts-core/pts-benchmark-screen.php @@ -0,0 +1,107 @@ +set_title("Phoronix Test Suite - " . $BENCHMARK_NAME); +$window->set_border_width(10); +$window->connect_simple("destroy", "gtk_shutdown"); +$window->set_size_request(500, -1); + +$window->add($vbox = new GtkVBox()); + +$pts_title = new GtkLabel("Phoronix Test Suite"); +$pts_title->modify_font(new PangoFontDescription("FreeSans 21")); +$pts_title->modify_fg(Gtk::STATE_NORMAL, GdkColor::parse("#2b6b29")); +$pts_title->set_size_request(-1, 40); +$vbox->pack_start($pts_title, 0, 0); + +$pts_benchmark_title = new GtkLabel($BENCHMARK_NAME); +$pts_benchmark_title->modify_font(new PangoFontDescription("FreeSans 16")); +$pts_benchmark_title->modify_fg(Gtk::STATE_NORMAL, GdkColor::parse("#AE0000")); +$pts_benchmark_title->set_size_request(-1, 24); +$vbox->pack_start($pts_benchmark_title, 0, 0); + +// Select Benchmark Row +$benchmark_settings_name = $BENCHMARK_XML->getXMLArrayValues("PTSBenchmark/Settings/Option/DisplayName"); +$benchmark_settings_argument = $BENCHMARK_XML->getXMLArrayValues("PTSBenchmark/Settings/Option/ArgumentName"); +$benchmark_settings_identifier = $BENCHMARK_XML->getXMLArrayValues("PTSBenchmark/Settings/Option/Identifier"); +$benchmark_settings_menu = $BENCHMARK_XML->getXMLArrayValues("PTSBenchmark/Settings/Option/Menu"); + +$hbox = array(); +for($option_count = 0; $option_count < sizeof($benchmark_settings_name); $option_count++) +{ + $this_identifier = $benchmark_settings_identifier[$option_count]; + $hbox[$option_count] = new GtkHBox(); + $hbox[$option_count]->pack_start(new GtkLabel($benchmark_settings_name[$option_count] . ": "), 0, 0); + $hbox[$option_count]->pack_start(new GtkLabel(" "), 0, 0); + + if(strlen($benchmark_settings_menu[$option_count]) > 6) + { + $xml_parser = new tandem_XmlReader($benchmark_settings_menu[$option_count]); + $menu_option_names = $xml_parser->getXMLArrayValues("Entry/Name"); + + // Benchmark Selection GtkComboBox + $$this_identifier = new GtkComboBox(); + $list_model = new GtkListStore(Gtk::TYPE_STRING); + $$this_identifier->set_model($list_model); + $cell_renderer = new GtkCellRendererText(); + $$this_identifier->pack_start($cell_renderer); + $$this_identifier->set_attributes($cell_renderer, "text", 0); + + // Load Up Benchmark List + foreach($menu_option_names as $menu_item) + { + $list_model->append(array($menu_item)); + } + + // Display + $hbox[$option_count]->pack_start($$this_identifier, 0, 0); + } + else + { + + $$this_identifier = new GtkTextView(); + $buffer[$option_count] = new GtkTextBuffer(); + $$this_identifier->set_buffer($buffer[$option_count]); + $$this_identifier->set_size_request(120, -1); + + // Display + $hbox[$option_count]->pack_start($$this_identifier, 0, 0); + } + + $vbox->pack_start($hbox[$option_count], 0, 0); + $vbox->pack_start(new GtkLabel(" "), 0, 0); + + array_push($BENCHMARK_OPTIONS, $this_identifier); +} + +$vbox->pack_start(new GtkLabel(" "), 0, 0); + +$submit_button = new GtkButton("Run Benchmark"); +$submit_button->set_size_request(128, 28); +$submit_button->connect("clicked", "run_gtk_benchmark"); +$vbox->pack_start($submit_button, 0, 0); + +$window->show_all(); +Gtk::main(); +?> diff --git a/pts-core/pts-install-benchmark.php b/pts-core/pts-install-benchmark.php new file mode 100644 index 000000000..5b7bf6f91 --- /dev/null +++ b/pts-core/pts-install-benchmark.php @@ -0,0 +1,34 @@ +. +*/ + +require("pts-core/functions/pts-functions.php"); +require("pts-core/functions/pts-functions-install.php"); + +$TO_INSTALL = strtolower($argv[1]); + +if(empty($TO_INSTALL)) +{ + echo "\nThe benchmark or suite name to install must be supplied.\n"; + exit; +} + +pts_recurse_install_benchmark($TO_INSTALL); + +?> diff --git a/pts-core/pts-main.php b/pts-core/pts-main.php new file mode 100644 index 000000000..b99a94af8 --- /dev/null +++ b/pts-core/pts-main.php @@ -0,0 +1,86 @@ +. +*/ + +if(!extension_loaded("gtk")) + dl("php_gtk2.so"); + +require("pts-core/functions/pts-functions.php"); +require("pts-core/functions/pts-functions-gtk.php"); + +$window = new GtkWindow(); +$window->set_title("Phoronix Test Suite"); +$window->set_border_width(10); +$window->connect_simple("destroy", "gtk_shutdown"); +$window->set_size_request(450, -1); + +$window->add($vbox = new GtkVBox()); + +$pts_title = new GtkLabel("Phoronix Test Suite"); +$pts_title->modify_font(new PangoFontDescription("FreeSans 21")); +$pts_title->modify_fg(Gtk::STATE_NORMAL, GdkColor::parse("#2b6b29")); +$pts_title->set_size_request(-1, 60); +$vbox->pack_start($pts_title, 0, 0); + +$vbox->pack_start($hbox = new GtkHBox(), 0, 0); + +// Select Benchmark Row +$hbox->pack_start(new GtkLabel("Benchmark: "), 0, 0); + +// Benchmark Selection GtkComboBox +$benchmark_combobox = new GtkComboBox(); +$list_model = new GtkListStore(Gtk::TYPE_STRING); +$benchmark_combobox->set_model($list_model); +$cell_renderer = new GtkCellRendererText(); +$benchmark_combobox->pack_start($cell_renderer); +$benchmark_combobox->set_attributes($cell_renderer, "text", 0); + +// Load Up Benchmark List +foreach(pts_benchmark_names_to_array() as $menu_item) +{ + $list_model->append(array($menu_item)); +} + +// Display +$hbox->pack_start($benchmark_combobox, 0, 0); +$hbox->pack_start(new GtkLabel(" "), 0, 0); + +$submit_button = new GtkButton("Submit"); +$submit_button->set_size_request(74, 28); +$submit_button->connect("clicked", "combobox_select", $benchmark_combobox); +$hbox->pack_start($submit_button, 0, 0); + +$vbox->pack_start(new GtkLabel(" "), 0, 0); + +$pts_desc = new GtkLabel("Select the benchmark you would like to run. The application must be installed prior to running the Phoronix Test Suite. Any requests or issues can be addressed in the Phoronix Forums."); +$pts_desc->set_size_request(430, -1); +$pts_desc->set_line_wrap(true); +$vbox->pack_start($pts_desc, 0, 0); + +$vbox->pack_start(new GtkLabel(" "), 0, 0); + +$pts_link = new GtkLabel("www.phoronix.com"); +$pts_link->modify_font(new PangoFontDescription("FreeSans 14")); +$pts_link->modify_fg(Gtk::STATE_NORMAL, GdkColor::parse("#2b6b29")); +$pts_link->set_size_request(-1, 30); +$vbox->pack_start($pts_link, 0, 0); + +$window->show_all(); +Gtk::main(); +?> diff --git a/pts-core/pts-merge-results.php b/pts-core/pts-merge-results.php new file mode 100644 index 000000000..ad6ed5d38 --- /dev/null +++ b/pts-core/pts-merge-results.php @@ -0,0 +1,37 @@ + diff --git a/pts-core/pts-results-viewer/phoronix-test-suite.gif b/pts-core/pts-results-viewer/phoronix-test-suite.gif new file mode 100644 index 0000000000000000000000000000000000000000..f1a27b196c7ad4f32f9f05c2932dcae7e21782b2 GIT binary patch literal 53906 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 + + + + + Phoronix Test Suite - Results Viewer + + + + +

+
+ +
+ +
Show Test Details >>
+
+
+
Phoronix Test Suite v
+
Generated by on
+
Test Notes:
+ +
+
Performance Optimization Tips >>
+ +
+ +
+
+ +
v
+
+ +
+ + :
+
+
+
+
+
http://www.phoronix-test-suite.com/pts-grapher/r/graph-remote.php?t=&s=&n=&u=&p=&i=;&v=; +
+
+
+

The Phoronix Test Suite is developed by Phoronix, an Internet resource devoted to Linux hardware reviews, video driver articles, and much more.

+
+ + + + diff --git a/pts-core/pts-results-viewer/pts-viewer.css b/pts-core/pts-results-viewer/pts-viewer.css new file mode 100644 index 000000000..fa055c9a3 --- /dev/null +++ b/pts-core/pts-results-viewer/pts-viewer.css @@ -0,0 +1,96 @@ +body +{ + text-align: left; + margin: 0; + padding: 0; + font-family: arial, helvetica, sans-serif; + font-size: 14px; + background-color: #3b433a; +} +div#pts_container +{ + width: 960px; + margin: 0 auto; + text-align: left; + color: #FFF; + overflow: hidden; + background-color: #222; + border: solid #000; + border-width: 0 1px 1px; +} +div#pts_container a +{ + color: #FFF; +} +div#pts_logo +{ + margin: 0; + width: 960px; + height: 70px; + background: #222 url(phoronix-test-suite.gif) no-repeat; + border: solid #000; + border-width: 0 0 1px 0; +} +div#pts_benchmark_main_header +{ + color: #FFF; + font-size: 36px; + font-weight: bold; + padding: 5px 0 5px 15px; +} +div#pts_description_area +{ + padding: 0 0 5px; +} +div#pts_benchmark_area +{ + background-color: #FFF; + padding: 15px 10px; + color: #000; + overflow: hidden; +} +div.pts_benchmark_descriptor +{ + color: #EFEFEF; + padding: 5px 20px; +} +div.pts_area_box +{ + background-color: #66695B; + color: #EFEFEF; + padding: 1px 5px 0; + border: solid #000 1px; +} +div.pts_benchmark_bar +{ + background-color: #2b6b29; + color: #FFF; + padding: 4px; + border: solid #000 1px; + clear: both; +} +span.pts_benchmark_bar_header +{ + font-size: 18px; + font-weight: bold; +} +span.pts_benchmark_bar_version +{ + vertical-align: super; + padding-left: 5px; + font-size: 10px; +} +div.pts_benchmark_text +{ + padding: 50px 15px 15px; + float: left; + overflow: hidden; +} +div.pts_benchmark_img_area +{ + padding: 15px 0 15px 35px; + float: right; + overflow: hidden; + height: 100%; + vertical-align: middle; +} diff --git a/pts-core/pts-results-viewer/pts.js b/pts-core/pts-results-viewer/pts.js new file mode 100644 index 000000000..0ebbac7b9 --- /dev/null +++ b/pts-core/pts-results-viewer/pts.js @@ -0,0 +1,15 @@ +function switchShow(i) +{ + if(document.getElementById(i).style.display == "none") + showObject(i); + else + hideObject(i); +} +function hideObject(i) +{ + document.getElementById(i).style.display = "none"; +} +function showObject(i) +{ + document.getElementById(i).style.display = "block"; +} diff --git a/pts-core/pts-run-benchmark.php b/pts-core/pts-run-benchmark.php new file mode 100644 index 000000000..0f040ffa0 --- /dev/null +++ b/pts-core/pts-run-benchmark.php @@ -0,0 +1,257 @@ +. +*/ + +require("pts-core/functions/pts-functions.php"); +require("pts-core/functions/pts-functions-run.php"); +require("pts-core/functions/pts-functions-merge.php"); + +$TO_RUN = strtolower($argv[1]); +$TO_RUN_TYPE = pts_benchmark_type($TO_RUN); +$BENCHMARK_RAN = false; + +if(empty($TO_RUN)) +{ + echo "\nThe benchmark, suite name, or saved file name must be supplied.\n"; + exit; +} + +if(!$TO_RUN_TYPE) +{ + if(is_file(pts_input_correct_results_path($TO_RUN))) + { + $SAVE_RESULTS = true; + $TO_RUN_TYPE = "LOCAL_COMPARISON"; + $PROPOSED_FILE_NAME = $TO_RUN; + $RES_NULL = null; + + do + { + echo "Enter a unique identifier for distinguishing this series of tests: "; + $RESULTS_IDENTIFIER = trim(str_replace(array('/'), '', fgets(STDIN))); + }while(empty($RESULTS_IDENTIFIER)); + + $RESULTS = new tandem_XmlWriter(); + } + else if(trim(file_get_contents("http://www.phoronix-test-suite.com/global/profile-check.php?id=$TO_RUN")) == "REMOTE_FILE") + { + $SAVE_RESULTS = true; + $TO_RUN_TYPE = "GLOBAL_COMPARISON"; + $PROPOSED_FILE_NAME = $TO_RUN; + $RES_NULL = null; + + pts_save_benchmark_file($PROPOSED_FILE_NAME, $RES_NULL, file_get_contents("http://www.phoronix-test-suite.com/global/pts-results-viewer.php?id=$TO_RUN")); + + do + { + echo "Enter a unique identifier for distinguishing this series of tests: "; + $RESULTS_IDENTIFIER = trim(str_replace(array('/'), '', fgets(STDIN))); + }while(empty($RESULTS_IDENTIFIER)); + + $RESULTS = new tandem_XmlWriter(); + } + else + { + "\n$TO_RUN is not a recognized benchmark, suite, or PTS Global ID. Exiting...\n"; + exit(0); + } +} +else +{ + echo "Would you like to save these benchmark results (Y/n)? "; + $SAVE_RESULTS = trim(fgets(STDIN)); + + if(strtolower($SAVE_RESULTS) == "y") + { + $SAVE_RESULTS = true; + } + else if(strtolower($SAVE_RESULTS) == "n") + { + echo "Benchmark results will NOT be saved!\n"; + $SAVE_RESULTS = false; + } + else + { + echo "\nInput not understood. Results will not be saved.\n"; + $SAVE_RESULTS = false; + } + + if($SAVE_RESULTS) + { + do + { + echo "Enter a name to save (or merge) these results: "; + $PROPOSED_FILE_NAME = trim(fgets(STDIN)); + }while(empty($PROPOSED_FILE_NAME)); + + $CUSTOM_TITLE = $PROPOSED_FILE_NAME; + $PROPOSED_FILE_NAME = trim(str_replace(array(' ', '/', '&', '\''), "", strtolower($PROPOSED_FILE_NAME))); // Clean up name + + if(empty($PROPOSED_FILE_NAME)) + $PROPOSED_FILE_NAME = date("Y-m-d-Hi"); + + do + { + echo "Enter a unique identifier for distinguishing this series of tests: "; + $RESULTS_IDENTIFIER = trim(str_replace(array('/'), '', fgets(STDIN))); + }while(empty($RESULTS_IDENTIFIER)); + + $RESULTS = new tandem_XmlWriter(); + + echo "\nPhoronix Test Suite will record results!\n"; + } +} + +if($TO_RUN_TYPE == "BENCHMARK") +{ + $xml_parser = new tandem_XmlReader(file_get_contents(XML_PROFILE_LOCATION . "$TO_RUN.xml")); + $settings_name = $xml_parser->getXMLArrayValues("PTSBenchmark/Settings/Option/DisplayName"); + $settings_argument = $xml_parser->getXMLArrayValues("PTSBenchmark/Settings/Option/ArgumentName"); + $settings_identifier = $xml_parser->getXMLArrayValues("PTSBenchmark/Settings/Option/Identifier"); + $settings_menu = $xml_parser->getXMLArrayValues("PTSBenchmark/Settings/Option/Menu"); + + $USER_ARGS = ""; + $TEXT_ARGS = ""; + for($option_count = 0; $option_count < sizeof($settings_name); $option_count++) + { + $this_identifier = $settings_identifier[$option_count]; + echo "\n$settings_name[$option_count]:\n"; + + if(!empty($settings_menu[$option_count])) + { + $xml_parser = new tandem_XmlReader($settings_menu[$option_count]); + $option_names = $xml_parser->getXMLArrayValues("Entry/Name"); + $option_values = $xml_parser->getXMLArrayValues("Entry/Value"); + + echo "\n"; + for($i = 0; $i < count($option_names); $i++) + { + echo ($i + 1) . ": " . $option_names[$i] . "\n"; + } + + do + { + echo "\nPlease Enter Your Choice: "; + $bench_choice = strtolower(trim(fgets(STDIN))); + }while($bench_choice < 1 || $bench_choice > count($option_names)); + $TEXT_ARGS .= "$settings_name[$option_count]: " . $option_names[($bench_choice - 1)]; + $USER_ARGS .= $settings_argument[$option_count] . $option_values[($bench_choice - 1)] . " "; + + if($option_count < sizeof($settings_name) - 1) + $TEXT_ARGS .= "; "; + } + else + { + echo "\nEnter Value: "; + $value = strtolower(trim(fgets(STDIN))); + $USER_ARGS .= $settings_argument[$option_count] . $value; + } + } + unset($xml_parser); + + if($SAVE_RESULTS) + { + $xml_parser = new tandem_XmlReader(file_get_contents(XML_PROFILE_LOCATION . "$TO_RUN.xml")); + $test_description = $xml_parser->getXMLValue("PTSBenchmark/Information/Description"); + $test_version = $xml_parser->getXMLValue("PTSBenchmark/PhoronixTestSuite/Version"); + $test_type = $xml_parser->getXMLValue("PTSBenchmark/PhoronixTestSuite/ApplicationType"); + $test_maintainer = $xml_parser->getXMLValue("PTSBenchmark/PhoronixTestSuite/Maintainer"); + unset($xml_parser); + } + pts_recurse_call_benchmark(array($TO_RUN), array($USER_ARGS), $SAVE_RESULTS, $RESULTS, $RESULTS_IDENTIFIER, array($TEXT_ARGS)); +} +else if($TO_RUN_TYPE == "TEST_SUITE") +{ + echo "\n=================================\n"; + echo ucwords($TO_RUN) . " Test Suite"; + echo "\n=================================\n"; + + echo "\nRunning Benchmarks For " . ucwords($TO_RUN) . " Test Suite...\n\n"; + + $xml_parser = new tandem_XmlReader(file_get_contents(XML_SUITE_LOCATION . "$TO_RUN.xml")); + + if($SAVE_RESULTS) + { + $test_description = $xml_parser->getXMLValue("PTSuite/PhoronixTestSuite/Description"); + $test_version = $xml_parser->getXMLValue("PTSuite/PhoronixTestSuite/Version"); + $test_type = $xml_parser->getXMLValue("PTSuite/PhoronixTestSuite/BenchmarkType"); + $test_maintainer = $xml_parser->getXMLValue("PTSuite/PhoronixTestSuite/Maintainer"); + } + + $suite_benchmarks = $xml_parser->getXMLArrayValues("PTSuite/PTSBenchmark/Benchmark"); + $arguments = $xml_parser->getXMLArrayValues("PTSuite/PTSBenchmark/Arguments"); + $arguments_description = $xml_parser->getXMLArrayValues("PTSuite/PTSBenchmark/Description"); + unset($xml_parser); + + pts_recurse_call_benchmark($suite_benchmarks, $arguments, $SAVE_RESULTS, $RESULTS, $RESULTS_IDENTIFIER, $arguments_description); +} +else if($SAVE_RESULTS && ($TO_RUN_TYPE == "GLOBAL_COMPARISON" || $TO_RUN_TYPE == "LOCAL_COMPARISON")) +{ + echo "\n=================================\n"; + echo "Global Comparison Against: " . $TO_RUN; + echo "\n=================================\n"; + + $xml_parser = new tandem_XmlReader(file_get_contents(SAVE_RESULTS_LOCATION . $TO_RUN . ".xml")); + $CUSTOM_TITLE = $xml_parser->getXMLValue("PhoronixTestSuite/Suite/Title"); + $test_description = $xml_parser->getXMLValue("PhoronixTestSuite/Suite/Description"); + $test_version = $xml_parser->getXMLValue("PhoronixTestSuite/Suite/Version"); + $test_type = $xml_parser->getXMLValue("PhoronixTestSuite/Suite/Type"); + $test_maintainer = $xml_parser->getXMLValue("PhoronixTestSuite/Suite/Maintainer"); + + $suite_benchmarks = $xml_parser->getXMLArrayValues("PhoronixTestSuite/Benchmark/TestName"); + $arguments = $xml_parser->getXMLArrayValues("PhoronixTestSuite/Benchmark/TestArguments"); + $arguments_description = $xml_parser->getXMLArrayValues("PhoronixTestSuite/Benchmark/Attributes"); + unset($xml_parser); + + pts_recurse_call_benchmark($suite_benchmarks, $arguments, $SAVE_RESULTS, $RESULTS, $RESULTS_IDENTIFIER, $arguments_description); +} +else +{ + echo "\nUnrecognized option: $TO_RUN_TYPE\n"; +} + +if($SAVE_RESULTS) +{ + $id = pts_request_new_id(); + $RESULTS->setXslBinding("pts-results-viewer/pts-results-viewer.xsl"); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Hardware", $id, pts_hw_string()); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Software", $id, pts_sw_string()); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Author", $id, pts_current_user()); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestDate", $id, date("F j, Y h:i A")); + $RESULTS->addXmlObject("PhoronixTestSuite/System/TestNotes", $id, " "); + $RESULTS->addXmlObject("PhoronixTestSuite/System/Version", $id, PTS_VERSION); + $RESULTS->addXmlObject("PhoronixTestSuite/System/AssociatedIdentifiers", $id, $RESULTS_IDENTIFIER); + + $id = pts_request_new_id(); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Title", $id, $CUSTOM_TITLE); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Name", $id, $TO_RUN); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Version", $id, $test_version); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Description", $id, $test_description); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Type", $id, $test_type); + $RESULTS->addXmlObject("PhoronixTestSuite/Suite/Maintainer", $id, $test_maintainer); + + if($BENCHMARK_RAN) + { + pts_save_benchmark_file($PROPOSED_FILE_NAME, $RESULTS); + echo "Results Saved To: " . SAVE_RESULTS_LOCATION . "$PROPOSED_FILE_NAME.xml\n"; + display_web_browser(SAVE_RESULTS_LOCATION . "$PROPOSED_FILE_NAME.xml"); + } +} + +?> diff --git a/pts-core/pts-run-cmd.php b/pts-core/pts-run-cmd.php new file mode 100644 index 000000000..b5cf4437c --- /dev/null +++ b/pts-core/pts-run-cmd.php @@ -0,0 +1,123 @@ + : Merge two saved result sets"; + break; + case "LIST_TESTS": + echo "\n=================================\n"; + echo "Phoronix Test Suite - Benchmarks\n"; + echo "=================================\n\n"; + foreach(glob(XML_PROFILE_LOCATION . "*.xml") as $benchmark_file) + { + $xml_parser = new tandem_XmlReader(file_get_contents($benchmark_file)); + $name = $xml_parser->getXMLValue("PTSBenchmark/Information/Title"); + $identifier = $xml_parser->getXMLValue("PTSBenchmark/Information/Identifier"); + $license = $xml_parser->getXMLValue("PTSBenchmark/PhoronixTestSuite/License"); + $status = $xml_parser->getXMLValue("PTSBenchmark/PhoronixTestSuite/Status"); + + echo "- $name ($identifier)\n"; + echo "\tStatus: $status License: $license\n\n"; + } + echo "\n"; + break; + case "LIST_SUITES": + echo "\n=================================\n"; + echo "Phoronix Test Suite - Suites\n"; + echo "=================================\n\n"; + $benchmark_suites = array(); + foreach(glob(XML_SUITE_LOCATION . "*.xml") as $benchmark_file) + { + $xml_parser = new tandem_XmlReader(file_get_contents($benchmark_file)); + $name = $xml_parser->getXMLValue("PTSuite/PhoronixTestSuite/Title"); + $identifier = basename($benchmark_file, ".xml"); + + echo "- $name ($identifier)\n"; + } + echo "\n"; + break; + case "LIST_SAVED_TESTS": + echo "\n=================================\n"; + echo "Phoronix Test Suite - Saved Results\n"; + echo "=================================\n\n"; + foreach(glob(SAVE_RESULTS_LOCATION . "*.xml") as $benchmark_file) + { + // TODO: Clean up this check... + $bt = substr($benchmark_file, strrpos($benchmark_file, '-') + 1); + $bt = intval(substr($bt, 0, strpos($bt, '.'))); + + if($bt == 0) + { + $xml_parser = new tandem_XmlReader(file_get_contents($benchmark_file)); + $title = $xml_parser->getXMLValue("PhoronixTestSuite/Suite/Title"); + $suite = $xml_parser->getXMLValue("PhoronixTestSuite/Suite/Name"); + $raw_results = $xml_parser->getXMLArrayValues("PhoronixTestSuite/Benchmark/Results"); + $results_xml = new tandem_XmlReader($raw_results[0]); + $identifiers = $results_xml->getXMLArrayValues("Group/Entry/Identifier"); + + if(!empty($title)) + { + echo "Saved Name: " . basename($benchmark_file, ".xml") . "\n"; + echo "$title (Test: $suite)\n"; + + foreach($identifiers as $id) + echo "\t- $id\n"; + + echo "\n"; + } + } + } + echo "\n"; + break; + default: + echo "Phoronix Test Suite: Internal Error. Not Recognized Command ($COMMAND).\n"; +} + +?> diff --git a/pts/benchmark-profiles/build-imagemagick.xml b/pts/benchmark-profiles/build-imagemagick.xml new file mode 100644 index 000000000..4a6389c0b --- /dev/null +++ b/pts/benchmark-profiles/build-imagemagick.xml @@ -0,0 +1,20 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + ImageMagick Compilation + 6.4.0 + build-imagemagick + time-compile-imagemagick + 1 + Seconds + This test times how long it takes to build ImageMagick. + + + diff --git a/pts/benchmark-profiles/build-linux-kernel.xml b/pts/benchmark-profiles/build-linux-kernel.xml new file mode 100644 index 000000000..6ace71473 --- /dev/null +++ b/pts/benchmark-profiles/build-linux-kernel.xml @@ -0,0 +1,20 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + Timed Linux Kernel Compilation + 2.6.24 + build-linux-kernel + time-compile-kernel + 1 + Seconds + This test times how long it takes to build the Linux 2.6.25 kernel. + + + diff --git a/pts/benchmark-profiles/build-mplayer.xml b/pts/benchmark-profiles/build-mplayer.xml new file mode 100644 index 000000000..4c5066001 --- /dev/null +++ b/pts/benchmark-profiles/build-mplayer.xml @@ -0,0 +1,20 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + Timed MPlayer Compilation + 1.0-rc2 + build-mplayer + time-compile-mplayer + 1 + Seconds + This test times how long it takes to build the MPlayer media program. + + + diff --git a/pts/benchmark-profiles/build-php.xml b/pts/benchmark-profiles/build-php.xml new file mode 100644 index 000000000..e9eeea8a0 --- /dev/null +++ b/pts/benchmark-profiles/build-php.xml @@ -0,0 +1,20 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + Timed PHP Compilation + 5.2.5 + build-php + time-compile-php + 1 + Seconds + This test times how long it takes to build PHP 5 with the Zend engine. + + + diff --git a/pts/benchmark-profiles/compress-gzip.xml b/pts/benchmark-profiles/compress-gzip.xml new file mode 100644 index 000000000..50883980e --- /dev/null +++ b/pts/benchmark-profiles/compress-gzip.xml @@ -0,0 +1,20 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + Time Gzip Compression + + compress-gzip + compress-gzip + 5 + Seconds + Timed Gzip compression benchmarks. + + + diff --git a/pts/benchmark-profiles/doom3-demo.xml b/pts/benchmark-profiles/doom3-demo.xml new file mode 100644 index 000000000..2dfc1af3c --- /dev/null +++ b/pts/benchmark-profiles/doom3-demo.xml @@ -0,0 +1,110 @@ + + + 0.1 + Graphics + Game + NON-FREE + UNKNOWN + Michael Larabel + + + Doom 3 (Demo) + 1.1.1286 + doom3-demo + doom3 + 1 + FPS + This test calculates the average frame-rate within the Doom 3 (demo) game. + + + + + +timedemoquit doom3-pts-demo +set r_mode -1 + + + + + + + + diff --git a/pts/benchmark-profiles/doom3.xml b/pts/benchmark-profiles/doom3.xml new file mode 100644 index 000000000..782a7bbce --- /dev/null +++ b/pts/benchmark-profiles/doom3.xml @@ -0,0 +1,110 @@ + + + 0.1 + Graphics + Game + NON-FREE + UNKNOWN + Michael Larabel + + + Doom 3 + 1.3.1 + doom3 + doom3 + 3 + FPS + This test calculates the average frame-rate within the Doom 3 game. + + + + + +timedemoquit demo1 +set r_mode -1 + + + + + + + + diff --git a/pts/benchmark-profiles/encode-flac.xml b/pts/benchmark-profiles/encode-flac.xml new file mode 100644 index 000000000..1b8056b1a --- /dev/null +++ b/pts/benchmark-profiles/encode-flac.xml @@ -0,0 +1,26 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + FLAC Audio Encoding + 1.2.1 + encode-flac + flac + 3 + Seconds + This test times how long it takes to encode a sample WAV file to FLAC format. + + + + + + + + + diff --git a/pts/benchmark-profiles/encode-mp3.xml b/pts/benchmark-profiles/encode-mp3.xml new file mode 100644 index 000000000..6545bdc68 --- /dev/null +++ b/pts/benchmark-profiles/encode-mp3.xml @@ -0,0 +1,20 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + LAME MP3 Encoding + 3.97 + encode-mp3 + lame + 3 + Seconds + LAME is an MP3 encoder licensed under the LGPL. This test measures the time required to encode a WAV file to MP3 format. + + + diff --git a/pts/benchmark-profiles/encode-ogg.xml b/pts/benchmark-profiles/encode-ogg.xml new file mode 100644 index 000000000..dac38aa5a --- /dev/null +++ b/pts/benchmark-profiles/encode-ogg.xml @@ -0,0 +1,20 @@ + + + 0.1 + Processor + Utility + FREE + VERIFIED + Michael Larabel + + + Ogg Encoding + 1.2.0 + encode-ogg + oggenc + 3 + Seconds + This test times how long it takes to encode a sample WAV file to Ogg format. + + + diff --git a/pts/benchmark-profiles/etqw-demo.xml b/pts/benchmark-profiles/etqw-demo.xml new file mode 100644 index 000000000..d4cf3532e --- /dev/null +++ b/pts/benchmark-profiles/etqw-demo.xml @@ -0,0 +1,53 @@ + + + 0.1 + Graphics + Game + NON-FREE + UNKNOWN + Michael Larabel + + + Enemy Territory: Quake Wars + demo2 + etqw-demo + etqw + 3 + FPS + This test calculates the average frame-rate within the demo for the game ET:QW game. + + + + + +timenetdemoquit pts +set r_mode -1 + + + + + diff --git a/pts/benchmark-profiles/etqw.xml b/pts/benchmark-profiles/etqw.xml new file mode 100644 index 000000000..f69913643 --- /dev/null +++ b/pts/benchmark-profiles/etqw.xml @@ -0,0 +1,77 @@ + + + 0.1 + Graphics + Game + NON-FREE + UNKNOWN + Michael Larabel + + + Enemy Territory: Quake Wars + 1.4 + etqw + etqw + 3 + Due to a current limitation of Nexuiz, once the benchmark has completed you hit the quit button to leave the game. + FPS + This test calculates the average frame-rate within the ET:QW game. + + + + + +timenetdemo pts +set r_mode -1 + + + + + + diff --git a/pts/benchmark-profiles/fgl-glxgears.xml b/pts/benchmark-profiles/fgl-glxgears.xml new file mode 100644 index 000000000..8e0753818 --- /dev/null +++ b/pts/benchmark-profiles/fgl-glxgears.xml @@ -0,0 +1,44 @@ + + + 0.1 + Graphics + Demo + CLOSED + VERIFIED + Michael Larabel + + + ATI fgl_glxgears + fgl-glxgears + fgl_glxgears + 5 + FPS + This test calculates the average frame-rate within the ATI fgl_glxgears test. + This is a very poor benchmark. + + + + + /usr/bin/ + + + + diff --git a/pts/benchmark-profiles/hdparm-read.xml b/pts/benchmark-profiles/hdparm-read.xml new file mode 100644 index 000000000..84973aa78 --- /dev/null +++ b/pts/benchmark-profiles/hdparm-read.xml @@ -0,0 +1,44 @@ + + + 0.1 + Disk + Utility + FREE + UNVERIFIED + Michael Larabel + + + hdparm Timed Disk Reads + hdparm-read + hdparm-su + 3 + MB/s + + On most systems, hdparm requires root access + + + + + + + + + diff --git a/pts/benchmark-profiles/nexuiz.xml b/pts/benchmark-profiles/nexuiz.xml new file mode 100644 index 000000000..54253d7fc --- /dev/null +++ b/pts/benchmark-profiles/nexuiz.xml @@ -0,0 +1,64 @@ + + + 0.1 + Graphics + Game + FREE + VERIFIED + Michael Larabel + + + Nexuiz + 2.4 + nexuiz + nexuiz + 3 + Average FPS + This is a benchmark of Nexuiz, a popular open-source first-person shooter. + + + + + -benchmark demos/demo1 + + + + + + diff --git a/pts/benchmark-profiles/quake4.xml b/pts/benchmark-profiles/quake4.xml new file mode 100644 index 000000000..0c7e4b2fa --- /dev/null +++ b/pts/benchmark-profiles/quake4.xml @@ -0,0 +1,110 @@ + + + 0.1 + Graphics + Game + NON-FREE + UNKNOWN + Michael Larabel + + + Quake 4 + 1.4.2 + quake4 + quake4 + 1 + FPS + This test calculates the average frame-rate within the ET:QW game. + + + + + +timedemoquit pts +set r_mode -1 + + + + + + + + diff --git a/pts/benchmark-profiles/ramspeed.xml b/pts/benchmark-profiles/ramspeed.xml new file mode 100644 index 000000000..e5ded0c21 --- /dev/null +++ b/pts/benchmark-profiles/ramspeed.xml @@ -0,0 +1,60 @@ + + + 0.1 + Memory + Utility + FREE + VERIFIED + Michael Larabel + + + RAMspeed + 1.5.0 + ramspeed + ramspeed + 1 + + This benchmark tests the system memory (RAM) performance. + + + + + + + + + + + diff --git a/pts/benchmark-resources/build-imagemagick/install.sh b/pts/benchmark-resources/build-imagemagick/install.sh new file mode 100644 index 000000000..8ec7582f1 --- /dev/null +++ b/pts/benchmark-resources/build-imagemagick/install.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +cd $1 + +if [ ! -f image-magick.tar.bz2 ] + then + wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.4.0-2.tar.bz2 -O image-magick.tar.bz2 +fi + +echo "#!/bin/sh + +if [ ! -f image-magick.tar.bz2 ] + then + echo \"Image Magick Not Downloaded... Build Fails.\" + exit +fi + +rm -rf ImageMagick-6.4.0/ +tar -xjf image-magick.tar.bz2 +cd ImageMagick-6.4.0/ +./configure > /dev/null +sleep 3 +/usr/bin/time -f \"ImageMagick Build Time: %e Seconds\" make -s -j \$NUM_CPU_JOBS 2>&1 | grep Seconds" > time-compile-imagemagick + +chmod +x time-compile-imagemagick diff --git a/pts/benchmark-resources/build-imagemagick/parse-results.php b/pts/benchmark-resources/build-imagemagick/parse-results.php new file mode 100644 index 000000000..33579d768 --- /dev/null +++ b/pts/benchmark-resources/build-imagemagick/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/build-imagemagick/post.sh b/pts/benchmark-resources/build-imagemagick/post.sh new file mode 100644 index 000000000..bcf885b9c --- /dev/null +++ b/pts/benchmark-resources/build-imagemagick/post.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd $1 +rm -rf php-5.2.5/ diff --git a/pts/benchmark-resources/build-linux-kernel/install.sh b/pts/benchmark-resources/build-linux-kernel/install.sh new file mode 100644 index 000000000..addf82ed6 --- /dev/null +++ b/pts/benchmark-resources/build-linux-kernel/install.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +cp -f linux-2624-config $1 + +cd $1 + +if [ ! -f linux-2.6.24.tar.bz2 ] + then + wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.24.tar.bz2 -O linux-2.6.24.tar.bz2 +fi + +echo "#!/bin/sh + +if [ ! -f linux-2.6.24.tar.bz2 ] + then + echo \"Linux Kernel Not Downloaded... Build Fails.\" + exit +fi + +rm -rf linux-2.6.24/ +tar -xjf linux-2.6.24.tar.bz2 +cp -f linux-2624-config linux-2.6.24/.config +cd linux-2.6.24/ +sleep 3 +/usr/bin/time -f \"Kernel Build Time: %e Seconds\" make -s -j \$NUM_CPU_JOBS 2>&1 | grep Seconds" > time-compile-kernel + +chmod +x time-compile-kernel diff --git a/pts/benchmark-resources/build-linux-kernel/linux-2624-config b/pts/benchmark-resources/build-linux-kernel/linux-2624-config new file mode 100644 index 000000000..9b0cee2b7 --- /dev/null +++ b/pts/benchmark-resources/build-linux-kernel/linux-2624-config @@ -0,0 +1,3098 @@ +# +# Common config options automatically generated by splitconfig.pl +# +# CONFIG_4KSTACKS is not set +CONFIG_AC97_BUS=m +CONFIG_ACORN_PARTITION=y +# CONFIG_ACORN_PARTITION_ADFS is not set +# CONFIG_ACORN_PARTITION_CUMANA is not set +# CONFIG_ACORN_PARTITION_EESOX is not set +CONFIG_ACORN_PARTITION_ICS=y +# CONFIG_ACORN_PARTITION_POWERTEC is not set +CONFIG_ACORN_PARTITION_RISCIX=y +CONFIG_ACPI=y +CONFIG_ACPI_AC=m +CONFIG_ACPI_BLACKLIST_YEAR=2000 +CONFIG_ACPI_BUTTON=m +CONFIG_ACPI_CONTAINER=m +CONFIG_ACPI_CUSTOM_DSDT_INITRD=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_EC=y +CONFIG_ACPI_FAN=m +CONFIG_ACPI_POWER=y +CONFIG_ACPI_PROCESSOR=m +CONFIG_ACPI_PROCFS=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_SLEEP_PROC_FS=y +CONFIG_ACPI_SYSTEM=y +CONFIG_ACPI_THERMAL=m +CONFIG_AGP=m +CONFIG_AGP_INTEL=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANON_INODES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_FLATMEM_ENABLE=y +# CONFIG_ARCH_HAS_ILOG2_U32 is not set +# CONFIG_ARCH_HAS_ILOG2_U64 is not set +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_ARCH_POPULATES_NODE_MAP=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SUPPORTS_MSI=y +# CONFIG_ARPD is not set +CONFIG_ASK_IP_FIB_HASH=y +CONFIG_ATA=m +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_ACPI=y +CONFIG_ATA_GENERIC=m +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_PIIX=m +CONFIG_AUDIT=y +# CONFIG_AUDITSYSCALL is not set +CONFIG_AUDIT_GENERIC=y +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_BASE_FULL=y +CONFIG_BASE_SMALL=0 +# CONFIG_BEFS_DEBUG is not set +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BINFMT_AOUT=m +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_MISC=m +CONFIG_BITREVERSE=y +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DM=m +CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_HD is not set +# CONFIG_BLK_DEV_HD_IDE is not set +CONFIG_BLK_DEV_IDECD=m +CONFIG_BLK_DEV_IDEDISK=m +# CONFIG_BLK_DEV_IDE_SATA is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_BLK_DEV_LOOP=m +CONFIG_BLK_DEV_MD=m +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_BLK_DEV_SD=m +CONFIG_BLK_DEV_SR=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +# CONFIG_BLK_DEV_UB is not set +CONFIG_BLOCK=y +CONFIG_BONDING=m +CONFIG_BOOT_IOREMAP=y +CONFIG_BRIDGE=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_ULOG=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_NETFILTER=y +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_BUG=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_CHR_DEV_SG=m +CONFIG_CIFS=m +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_EXPERIMENTAL is not set +# CONFIG_CIFS_STATS is not set +# CONFIG_CIFS_WEAK_PW_HASH is not set +# CONFIG_CIFS_XATTR is not set +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_CLS_U32_MARK=y +# CONFIG_CLS_U32_PERF is not set +CONFIG_CODA_FS=m +# CONFIG_CODA_FS_OLD_API is not set +CONFIG_COMPAT_VDSO=y +CONFIG_CONFIGFS_FS=m +CONFIG_CONNECTOR=m +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_DEBUG is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m +CONFIG_CPU_FREQ_GOV_ONDEMAND=m +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=m +CONFIG_CPU_FREQ_STAT=m +CONFIG_CPU_FREQ_STAT_DETAILS=y +CONFIG_CRAMFS=y +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=m +CONFIG_CRC32=y +CONFIG_CRC_CCITT=m +CONFIG_CRC_ITU_T=m +CONFIG_CRYPTO=y +CONFIG_CRYPTO_AES=m +CONFIG_CRYPTO_AES_586=m +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_BLKCIPHER=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CBC=m +CONFIG_CRYPTO_CRC32C=m +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DEV_GEODE=m +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_ECB=m +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SHA1=m +CONFIG_CRYPTO_SHA256=m +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_586=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_XCBC=m +CONFIG_DCDBAS=m +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_DRIVER is not set +CONFIG_DEBUG_FS=y +# CONFIG_DEBUG_HIGHMEM is not set +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_RODATA is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_SPINLOCK_SLEEP is not set +# CONFIG_DEBUG_STACKOVERFLOW is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_DECNET=m +# CONFIG_DECNET_ROUTER is not set +# CONFIG_DEFAULT_AS is not set +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_DELL_RBU=m +CONFIG_DETECT_SOFTLOCKUP=y +CONFIG_DEVPORT=y +CONFIG_DEV_APPLETALK=m +# CONFIG_DISABLE_CONSOLE_SUSPEND is not set +# CONFIG_DISCONTIGMEM_MANUAL is not set +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set +CONFIG_DMA_ENGINE=y +CONFIG_DMI=y +CONFIG_DM_CRYPT=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_DELAY is not set +CONFIG_DM_MIRROR=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_EMC=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_ZERO=m +CONFIG_DNOTIFY=y +CONFIG_DOUBLEFAULT=y +CONFIG_DUMMY=m +CONFIG_DUMMY_CONSOLE=y +CONFIG_EARLY_PRINTK=y +CONFIG_ECRYPT_FS=m +# CONFIG_EDD is not set +CONFIG_EFI=y +CONFIG_EFI_PARTITION=y +CONFIG_EFI_VARS=y +CONFIG_EFS_FS=m +CONFIG_ELF_CORE=y +CONFIG_EMBEDDED=y +# CONFIG_ENABLE_MUST_CHECK is not set +CONFIG_EPOLL=y +CONFIG_EQUALIZER=m +CONFIG_EVENTFD=y +CONFIG_EXPERIMENTAL=y +CONFIG_EXPORTFS=m +CONFIG_EXT2_FS=m +CONFIG_EXT2_FS_POSIX_ACL=y +CONFIG_EXT2_FS_SECURITY=y +CONFIG_EXT2_FS_XATTR=y +# CONFIG_EXT2_FS_XIP is not set +CONFIG_EXT3_FS=m +CONFIG_EXT3_FS_POSIX_ACL=y +CONFIG_EXT3_FS_SECURITY=y +CONFIG_EXT3_FS_XATTR=y +# CONFIG_EXT4DEV_FS is not set +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_FAT_FS=m +# CONFIG_FAULT_INJECTION is not set +CONFIG_FB=y +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +CONFIG_FB_CIRRUS=m +CONFIG_FB_DEFERRED_IO=y +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_MACMODES is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_VESA=m +CONFIG_FB_VGA16=m +# CONFIG_FB_VIRTUAL is not set +CONFIG_FIB_RULES=y +# CONFIG_FIREWIRE is not set +CONFIG_FIRMWARE_EDID=y +CONFIG_FLATMEM=y +CONFIG_FLATMEM_MANUAL=y +CONFIG_FLAT_NODE_MEM_MAP=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x16=y +CONFIG_FONT_8x8=y +# CONFIG_FORCED_INLINING is not set +CONFIG_FRAMEBUFFER_CONSOLE=m +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_FRAME_POINTER is not set +CONFIG_FS_MBCACHE=m +CONFIG_FS_POSIX_ACL=y +CONFIG_FUSE_FS=m +CONFIG_FUTEX=y +CONFIG_FW_LOADER=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_HARDIRQS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_TIME=y +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=m +CONFIG_GFS2_FS_LOCKING_NOLOCK=m +CONFIG_HANGCHECK_TIMER=m +CONFIG_HAS_DMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +# CONFIG_HEADERS_CHECK is not set +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HIGHMEM=y +CONFIG_HIGHPTE=y +CONFIG_HIGH_RES_TIMERS=y +CONFIG_HOTPLUG=y +CONFIG_HPET=y +CONFIG_HPET_MMAP=y +# CONFIG_HPET_RTC_IRQ is not set +CONFIG_HPET_TIMER=y +CONFIG_HPFS_FS=m +CONFIG_HT_IRQ=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +CONFIG_HW_CONSOLE=y +CONFIG_HW_RANDOM_INTEL=m +# CONFIG_HZ_1000 is not set +# CONFIG_HZ_300 is not set +CONFIG_I2C=m +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALGOPCF=m +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_CHARDEV=m +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_I2C_DEBUG_CHIP is not set +# CONFIG_I2C_DEBUG_CORE is not set +CONFIG_I2C_PIIX4=m +# CONFIG_I2C_POULSBO is not set +CONFIG_IDE=y +# CONFIG_IDEDISK_MULTI_MODE is not set +# CONFIG_IDEPCI_PCIBUS_ORDER is not set +# CONFIG_IDE_ARM is not set +CONFIG_IDE_GENERIC=m +CONFIG_IDE_MAX_HWIFS=4 +# CONFIG_IDE_TASK_IOCTL is not set +# CONFIG_IKCONFIG is not set +CONFIG_INET=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_IPCOMP=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_MODE_BEET=m +CONFIG_INET6_XFRM_MODE_TRANSPORT=m +CONFIG_INET6_XFRM_MODE_TUNNEL=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET_AH=m +CONFIG_INET_DCCP_DIAG=m +CONFIG_INET_DIAG=y +CONFIG_INET_ESP=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_TCP_DIAG=y +CONFIG_INET_TUNNEL=m +CONFIG_INET_XFRM_MODE_BEET=m +CONFIG_INET_XFRM_MODE_TRANSPORT=m +CONFIG_INET_XFRM_MODE_TUNNEL=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INITRAMFS_SOURCE="" +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_INOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_INPUT=y +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_EVDEV=m +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_PCSPKR=m +# CONFIG_INPUT_TSDEV is not set +CONFIG_INTEL_IOATDMA=m +CONFIG_IOSCHED_AS=y +CONFIG_IOSCHED_CFQ=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_NOOP=y +CONFIG_IPDDP=m +CONFIG_IPDDP_DECAP=y +CONFIG_IPDDP_ENCAP=y +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPV6=m +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_IPV6_PRIVACY=y +# CONFIG_IPV6_ROUTER_PREF is not set +CONFIG_IPV6_SIT=m +CONFIG_IPV6_TUNNEL=m +CONFIG_IPX=m +# CONFIG_IPX_INTERN is not set +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_DCCP=m +CONFIG_IP_DCCP_ACKVEC=y +CONFIG_IP_DCCP_CCID2=m +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +CONFIG_IP_DCCP_CCID3=m +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +CONFIG_IP_DCCP_CCID3_RTO=100 +# CONFIG_IP_DCCP_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=m +CONFIG_IP_FIB_HASH=y +# CONFIG_IP_FIB_TRIE is not set +CONFIG_IP_MROUTE=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARP_MANGLE=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_MATCH_ADDRTYPE=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_IPRANGE=m +CONFIG_IP_NF_MATCH_OWNER=m +CONFIG_IP_NF_MATCH_RECENT=m +CONFIG_IP_NF_MATCH_TOS=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_QUEUE=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_LOG=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SAME=m +CONFIG_IP_NF_TARGET_TOS=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_TARGET_ULOG=m +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +# CONFIG_IP_PNP is not set +CONFIG_IP_ROUTE_MULTIPATH=y +# CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_SCTP=m +CONFIG_IP_VS=m +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_TAB_BITS=12 +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_WRR=m +CONFIG_ISA_DMA_API=y +CONFIG_ISO9660_FS=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_ITCO_WDT=m +CONFIG_JBD=m +# CONFIG_JBD_DEBUG is not set +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_JOLIET=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +# CONFIG_KALLSYMS_EXTRA_PASS is not set +CONFIG_KARMA_PARTITION=y +CONFIG_KEXEC=y +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYS=y +# CONFIG_KEYS_DEBUG_PROC_KEYS is not set +CONFIG_KMOD=y +CONFIG_KPROBES=y +CONFIG_KTIME_SCALAR=y +CONFIG_KVM_AMD=m +CONFIG_KVM_INTEL=m +CONFIG_LBD=y +# CONFIG_LDM_DEBUG is not set +CONFIG_LDM_PARTITION=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +CONFIG_LIBCRC32C=m +# CONFIG_LKDTM is not set +CONFIG_LLC2=m +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_LOCKD=m +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_LOCKD_V4=y +# CONFIG_LOGO is not set +CONFIG_LOG_BUF_SHIFT=17 +# CONFIG_LP_CONSOLE is not set +# CONFIG_LSF is not set +# CONFIG_M386 is not set +# CONFIG_M586MMX is not set +# CONFIG_M586TSC is not set +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAX_RAW_DEVS=256 +# CONFIG_MCORE2 is not set +# CONFIG_MCRUSOE is not set +# CONFIG_MCYRIXIII is not set +CONFIG_MD=y +CONFIG_MD_FAULTY=m +CONFIG_MD_LINEAR=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID456=m +CONFIG_MD_RAID5_RESHAPE=y +# CONFIG_MEFFICEON is not set +# CONFIG_MGEODEGX1 is not set +# CONFIG_MGEODE_LX is not set +CONFIG_MICROCODE=m +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_MII=m +CONFIG_MINIX_SUBPARTITION=y +# CONFIG_MK6 is not set +# CONFIG_MK7 is not set +# CONFIG_MK8 is not set +CONFIG_MMU=y +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODULE_UNLOAD=y +CONFIG_MODVERSIONS=y +CONFIG_MOUSE_PS2=m +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +# CONFIG_MPENTIUM4 is not set +# CONFIG_MPENTIUMII is not set +# CONFIG_MPENTIUMIII is not set +# CONFIG_MPENTIUMM is not set +CONFIG_MSDOS_FS=m +CONFIG_MSDOS_PARTITION=y +# CONFIG_MSS is not set +CONFIG_MTRR=y +# CONFIG_MVIAC3_2 is not set +# CONFIG_MVIAC7 is not set +# CONFIG_MWINCHIP2 is not set +# CONFIG_MWINCHIP3D is not set +# CONFIG_MWINCHIPC6 is not set +CONFIG_NE2K_PCI=m +CONFIG_NET=y +CONFIG_NETCONSOLE=m +CONFIG_NETDEVICES=y +CONFIG_NETDEV_1000=y +CONFIG_NETDEV_10000=y +CONFIG_NETFILTER=y +# CONFIG_NETFILTER_DEBUG is not set +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +CONFIG_NETFILTER_XT_TARGET_NOTRACK=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETPOLL=y +# CONFIG_NETPOLL_TRAP is not set +CONFIG_NETWORK_SECMARK=y +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_FW=m +# CONFIG_NET_CLS_IND is not set +CONFIG_NET_CLS_ROUTE=y +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_U32=m +CONFIG_NET_DMA=y +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_ESTIMATOR=y +CONFIG_NET_ETHERNET=y +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_NET_IPIP=m +CONFIG_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_PCI=y +CONFIG_NET_PKTGEN=m +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NET_SB1000=m +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_FIFO=y +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NFSD=m +CONFIG_NFSD_TCP=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V4=y +CONFIG_NFS_COMMON=y +CONFIG_NFS_DIRECTIO=y +CONFIG_NFS_FS=m +CONFIG_NFS_V3=y +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_ENABLED=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_IPV4=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_PROC_COMPAT=y +# CONFIG_NF_CONNTRACK_SANE is not set +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_ACCT=y +CONFIG_NF_CT_PROTO_GRE=m +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_NEEDED=y +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_PROTO_GRE=m +CONFIG_NF_NAT_TFTP=m +# CONFIG_NIU is not set +CONFIG_NLS=y +CONFIG_NLS_ASCII=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +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_874=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_DEFAULT="cp437" +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +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_8=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_UTF8=m +# CONFIG_NOHIGHMEM is not set +CONFIG_NR_QUICK=1 +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_FS=m +CONFIG_NVRAM=m +CONFIG_OCFS2_DEBUG_MASKLOG=y +CONFIG_OCFS2_FS=m +CONFIG_OPROFILE=m +CONFIG_OSF_PARTITION=y +# CONFIG_OSS_OBSOLETE is not set +CONFIG_PACKET=m +CONFIG_PACKET_MMAP=y +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PARPORT_1284=y +# CONFIG_PARPORT_GSC is not set +CONFIG_PARPORT_PC=m +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARTITION_ADVANCED=y +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +# CONFIG_PATA_ARTOP is not set +# CONFIG_PATA_ATIIXP is not set +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_CMD64X is not set +# CONFIG_PATA_CS5530 is not set +# CONFIG_PATA_CS5535 is not set +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_PLATFORM is not set +# CONFIG_PATA_RADISYS is not set +# CONFIG_PATA_SC1200 is not set +# CONFIG_PATA_VIA is not set +CONFIG_PCI=y +CONFIG_PCI_BIOS=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_DIRECT=y +CONFIG_PCI_GOANY=y +# CONFIG_PCI_GOBIOS is not set +# CONFIG_PCI_GODIRECT is not set +# CONFIG_PCI_GOMMCONFIG is not set +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_MSI=y +CONFIG_PCNET32=m +# CONFIG_PCNET32_NAPI is not set +CONFIG_PHYLIB=m +CONFIG_PHYSICAL_ALIGN=0x100000 +CONFIG_PHYSICAL_START=0x100000 +CONFIG_PLIST=y +CONFIG_PM=y +CONFIG_PM_DEBUG=y +CONFIG_PM_DISABLE_CONSOLE=y +CONFIG_PM_LEGACY=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SYSFS_DEPRECATED=y +CONFIG_PM_TRACE=y +# CONFIG_PM_VERBOSE is not set +CONFIG_PNP=y +CONFIG_PNPACPI=y +# CONFIG_PNP_DEBUG is not set +CONFIG_POSIX_MQUEUE=y +CONFIG_PPDEV=m +CONFIG_PPP=m +CONFIG_PPPOE=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPP_SYNC_TTY=m +# CONFIG_PREEMPT is not set +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_PRINTER=m +CONFIG_PRINTK=y +CONFIG_PRINTK_TIME=y +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_VMCORE=y +CONFIG_PROFILING=y +# CONFIG_PROVE_LOCKING is not set +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QNX4FS_FS=m +CONFIG_QUICKLIST=y +CONFIG_QUOTA=y +CONFIG_QUOTACTL=y +CONFIG_RAID_ATTRS=m +CONFIG_RAMFS=y +CONFIG_RAW_DRIVER=m +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_FS=m +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_REISERFS_FS_XATTR=y +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_RELAY=y +CONFIG_RELOCATABLE=y +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_RPCSEC_GSS_SPKM3=m +CONFIG_RT_MUTEXES=y +# CONFIG_RT_MUTEX_TESTER is not set +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +# CONFIG_SCHEDSTATS is not set +CONFIG_SCSI=m +# CONFIG_SCSI_AIC7XXX_OLD is not set +CONFIG_SCSI_BUSLOGIC=m +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_MULTI_LUN=y +CONFIG_SCSI_NETLINK=y +# CONFIG_SCSI_OMIT_FLASHPOINT is not set +CONFIG_SCSI_PROC_FS=y +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +# CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_WAIT_SCAN=m +# CONFIG_SCTP_DBG_MSG is not set +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_HMAC_MD5=y +# CONFIG_SCTP_HMAC_NONE is not set +# CONFIG_SCTP_HMAC_SHA1 is not set +CONFIG_SECCOMP=y +CONFIG_SECURITY=y +CONFIG_SECURITY_CAPABILITIES=m +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_NETWORK_XFRM is not set +CONFIG_SECURITY_ROOTPLUG=m +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0 +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_DISABLE=y +# CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT is not set +# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SEMAPHORE_SLEEPERS=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_RAW=m +CONFIG_SGI_PARTITION=y +CONFIG_SHAPER=m +CONFIG_SHMEM=y +CONFIG_SIGNALFD=y +# CONFIG_SK98LIN is not set +# CONFIG_SLAB is not set +CONFIG_SLHC=m +CONFIG_SLIP=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_MODE_SLIP6=y +CONFIG_SLIP_SMART=y +# CONFIG_SLOB is not set +CONFIG_SLUB=y +CONFIG_SLUB_DEBUG=y +CONFIG_SMB_FS=m +# CONFIG_SMB_NLS_DEFAULT is not set +CONFIG_SND=m +CONFIG_SND_AC97_CODEC=m +# CONFIG_SND_DEBUG is not set +CONFIG_SND_DUMMY=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +# CONFIG_SND_HDA_INTEL is not set +CONFIG_SND_INTEL8X0=m +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_PCM=m +CONFIG_SND_PCM_OSS=m +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_RAWMIDI=m +CONFIG_SND_RTCTIMER=m +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQUENCER_OSS=y +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_TIMER=m +# CONFIG_SND_VERBOSE_PRINTK is not set +CONFIG_SND_VERBOSE_PROCFS=y +CONFIG_SOFTWARE_SUSPEND=y +CONFIG_SOFT_WATCHDOG=m +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +# CONFIG_SOUND_DMAP is not set +# CONFIG_SOUND_MSNDCLAS is not set +# CONFIG_SOUND_MSNDPIN is not set +CONFIG_SOUND_OSS=m +# CONFIG_SOUND_PAS is not set +CONFIG_SOUND_PRIME=m +# CONFIG_SOUND_SB is not set +CONFIG_SOUND_SSCAPE=m +# CONFIG_SOUND_TRACEINIT is not set +# CONFIG_SOUND_TRIDENT is not set +# CONFIG_SPARSEMEM_MANUAL is not set +CONFIG_SPARSEMEM_STATIC=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_STANDALONE=y +CONFIG_SUNRPC=m +# CONFIG_SUNRPC_BIND34 is not set +CONFIG_SUNRPC_GSS=m +CONFIG_SUN_PARTITION=y +CONFIG_SWAP=y +CONFIG_SYN_COOKIES=y +CONFIG_SYSCTL=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSFS=y +CONFIG_SYSFS_DEPRECATED=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_SYSV_FS=m +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_TASKSTATS is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_MD5SIG=y +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TICK_ONESHOT=y +CONFIG_TIMER_STATS=y +# CONFIG_TINY_SHMEM is not set +CONFIG_TIPC=m +# CONFIG_TIPC_ADVANCED is not set +# CONFIG_TIPC_DEBUG is not set +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TUN=m +CONFIG_UDF_FS=m +CONFIG_UDF_NLS=y +# CONFIG_UFS_DEBUG is not set +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +CONFIG_UID16=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIX=y +CONFIG_UNIX98_PTYS=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +CONFIG_USB=m +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB_ARCH_HAS_OHCI=y +# CONFIG_USB_DEBUG is not set +CONFIG_USB_DEVICEFS=y +CONFIG_USB_DEVICE_CLASS=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_EHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_EHCI_HCD=m +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_OTG is not set +CONFIG_USB_STORAGE=m +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_TEST is not set +CONFIG_USB_UHCI_HCD=m +CONFIG_VFAT_FS=m +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_VGASTATE=m +CONFIG_VGA_CONSOLE=y +CONFIG_VIDEO_SELECT=y +CONFIG_VLAN_8021Q=m +CONFIG_VM86=y +CONFIG_VMI=y +# CONFIG_VMSPLIT_1G is not set +# CONFIG_VMSPLIT_2G is not set +# CONFIG_VMSPLIT_2G_OPT is not set +CONFIG_VMSPLIT_3G=y +# CONFIG_VMSPLIT_3G_OPT is not set +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_VT=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_VXFS_FS=m +CONFIG_WATCHDOG=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +# CONFIG_WRAPPER_PRINT is not set +CONFIG_X86=y +CONFIG_X86_32=y +CONFIG_X86_ACPI_CPUFREQ=m +# CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set +# CONFIG_X86_BIGSMP is not set +CONFIG_X86_BIOS_REBOOT=y +CONFIG_X86_BSWAP=y +CONFIG_X86_CMPXCHG=y +CONFIG_X86_CPUID=m +# CONFIG_X86_ELAN is not set +# CONFIG_X86_ES7000 is not set +# CONFIG_X86_E_POWERSAVER is not set +CONFIG_X86_FIND_SMP_CONFIG=y +CONFIG_X86_GENERIC=y +# CONFIG_X86_GENERICARCH is not set +CONFIG_X86_GX_SUSPMOD=m +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_INVLPG=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_L1_CACHE_SHIFT=7 +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_LONGHAUL=m +CONFIG_X86_LONGRUN=m +# CONFIG_X86_MCE is not set +CONFIG_X86_MINIMUM_CPU_MODEL=4 +CONFIG_X86_MPPARSE=y +CONFIG_X86_MSR=m +# CONFIG_X86_NUMAQ is not set +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_PC=y +CONFIG_X86_PM_TIMER=y +CONFIG_X86_POPAD_OK=y +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_PPRO_FENCE=y +CONFIG_X86_REBOOTFIXUPS=y +CONFIG_X86_SPEEDSTEP_CENTRINO=m +# CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI is not set +CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y +CONFIG_X86_SPEEDSTEP_ICH=m +CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y +# CONFIG_X86_SUMMIT is not set +# CONFIG_X86_VISWS is not set +# CONFIG_X86_VOYAGER is not set +CONFIG_X86_WP_WORKS_OK=y +CONFIG_X86_XADD=y +CONFIG_XFRM=y +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_USER=m +CONFIG_XFS_FS=m +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_RT=y +CONFIG_XFS_SECURITY=y +CONFIG_ZISOFS=y +CONFIG_ZLIB_DEFLATE=m +CONFIG_ZLIB_INFLATE=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA_FLAG=1 +# +# Config options for config.generic automatically generated by splitconfig.pl +# +CONFIG_3C359=m +CONFIG_3C515=m +CONFIG_60XX_WDT=m +CONFIG_6PACK=m +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_8129=y +# CONFIG_8139TOO_PIO is not set +# CONFIG_8139TOO_TUNE_TWISTER is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_9P_FS=m +CONFIG_ABYSS=m +CONFIG_AC3200=m +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ACPI_ASUS=m +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BAY=m +CONFIG_ACPI_DOCK=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_SBS=m +CONFIG_ACPI_SLEEP_PROC_SLEEP=y +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ACT200L_DONGLE=m +CONFIG_ACTISYS_DONGLE=m +CONFIG_ADAPTEC_STARFIRE=m +# CONFIG_ADAPTEC_STARFIRE_NAPI is not set +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_ADVANTECH_WDT=m +# CONFIG_AEDSP16_MSS is not set +# CONFIG_AEDSP16_SBPRO is not set +CONFIG_AFFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FS=m +CONFIG_AF_RXRPC=m +# CONFIG_AF_RXRPC_DEBUG is not set +CONFIG_AGP_ALI=m +CONFIG_AGP_AMD=m +CONFIG_AGP_AMD64=m +CONFIG_AGP_ATI=m +CONFIG_AGP_EFFICEON=m +CONFIG_AGP_NVIDIA=m +CONFIG_AGP_SIS=m +CONFIG_AGP_SWORKS=m +CONFIG_AGP_VIA=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_DEBUG_ENABLE=y +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_AIC79XX_RESET_DELAY_MS=15000 +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +CONFIG_AIC7XXX_DEBUG_ENABLE=y +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_AIC7XXX_RESET_DELAY_MS=15000 +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_ALI_FIR=m +# CONFIG_AMD8111E_NAPI is not set +CONFIG_AMD8111_ETH=m +CONFIG_APM=m +# CONFIG_APM_ALLOW_INTS is not set +# CONFIG_APM_CPU_IDLE is not set +# CONFIG_APM_DISPLAY_BLANK is not set +# CONFIG_APM_DO_ENABLE is not set +# CONFIG_APM_IGNORE_USER_SUSPEND is not set +# CONFIG_APM_REAL_MODE_POWER_OFF is not set +CONFIG_APPLICOM=m +CONFIG_APRICOT=m +CONFIG_ARCNET=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ARCNET_COM20020_ISA=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARLAN=m +CONFIG_ASUS_LAPTOP=m +CONFIG_AT1700=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATL1=m +CONFIG_ATM=y +CONFIG_ATMEL=m +CONFIG_ATM_AMBASSADOR=m +# CONFIG_ATM_AMBASSADOR_DEBUG is not set +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_ATM_CLIP=y +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_DRIVERS=y +# CONFIG_ATM_DUMMY is not set +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_FORE200E=m +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_FORE200E_MAYBE=m +CONFIG_ATM_FORE200E_PCA=y +CONFIG_ATM_FORE200E_PCA_DEFAULT_FW=y +CONFIG_ATM_FORE200E_TX_RETRY=16 +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_HORIZON=m +# CONFIG_ATM_HORIZON_DEBUG is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG 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_LANAI=m +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +CONFIG_ATM_TCP=m +CONFIG_ATM_ZATM=m +# CONFIG_ATM_ZATM_DEBUG is not set +CONFIG_ATP=m +CONFIG_AX25=m +# CONFIG_AX25_DAMA_SLAVE is not set +CONFIG_AZTCD=m +CONFIG_B44=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_LCD_SUPPORT=y +CONFIG_BACKLIGHT_PROGEAR=m +CONFIG_BAYCOM_EPP=m +CONFIG_BAYCOM_PAR=m +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BCM43XX=m +# CONFIG_BCM43XX_DEBUG is not set +CONFIG_BCM43XX_DMA=y +CONFIG_BCM43XX_DMA_AND_PIO_MODE=y +# CONFIG_BCM43XX_DMA_MODE is not set +CONFIG_BCM43XX_PIO=y +# CONFIG_BCM43XX_PIO_MODE is not set +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_CPQ_DA=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_AEC62XX=m +CONFIG_BLK_DEV_ALI15X3=m +CONFIG_BLK_DEV_AMD74XX=m +CONFIG_BLK_DEV_ATIIXP=m +CONFIG_BLK_DEV_CMD640=y +# CONFIG_BLK_DEV_CMD640_ENHANCED is not set +CONFIG_BLK_DEV_CMD64X=m +# CONFIG_BLK_DEV_CS5520 is not set +CONFIG_BLK_DEV_CS5530=m +CONFIG_BLK_DEV_CS5535=m +CONFIG_BLK_DEV_CY82C693=m +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_DELKIN=m +# CONFIG_BLK_DEV_GENERIC is not set +CONFIG_BLK_DEV_HPT34X=m +CONFIG_BLK_DEV_HPT366=m +CONFIG_BLK_DEV_IDE=m +CONFIG_BLK_DEV_IDEACPI=y +# CONFIG_BLK_DEV_IDECS is not set +CONFIG_BLK_DEV_IDEDMA=y +# CONFIG_BLK_DEV_IDEDMA_FORCED is not set +CONFIG_BLK_DEV_IDEDMA_PCI=y +CONFIG_BLK_DEV_IDEFLOPPY=m +CONFIG_BLK_DEV_IDEPCI=y +CONFIG_BLK_DEV_IDEPNP=y +CONFIG_BLK_DEV_IDESCSI=m +CONFIG_BLK_DEV_IDETAPE=m +CONFIG_BLK_DEV_IO_TRACE=y +# CONFIG_BLK_DEV_IT8213 is not set +# CONFIG_BLK_DEV_IT821X is not set +# CONFIG_BLK_DEV_JMICRON is not set +CONFIG_BLK_DEV_NS87415=m +# CONFIG_BLK_DEV_OFFBOARD is not set +CONFIG_BLK_DEV_OPTI621=m +# CONFIG_BLK_DEV_PDC202XX_NEW is not set +CONFIG_BLK_DEV_PDC202XX_OLD=m +# CONFIG_BLK_DEV_PIIX is not set +# CONFIG_BLK_DEV_RZ1000 is not set +CONFIG_BLK_DEV_SC1200=m +# CONFIG_BLK_DEV_SIIMAGE is not set +# CONFIG_BLK_DEV_SIS5513 is not set +# CONFIG_BLK_DEV_SLC90E66 is not set +# CONFIG_BLK_DEV_SVWKS is not set +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_TC86C001=m +# CONFIG_BLK_DEV_TRIFLEX is not set +CONFIG_BLK_DEV_TRM290=m +CONFIG_BLK_DEV_UMEM=m +CONFIG_BLK_DEV_VIA82CXXX=m +CONFIG_BLK_DEV_XD=m +CONFIG_BNX2=m +CONFIG_BPQETHER=m +CONFIG_BROADCOM_PHY=m +CONFIG_BT=m +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_CMTP=m +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBTUART=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUSB=m +CONFIG_BT_HCIUSB_SCO=y +CONFIG_BT_HCIVHCI=m +CONFIG_BT_HIDP=m +CONFIG_BT_L2CAP=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_SCO=m +CONFIG_C101=m +CONFIG_CAPI_AVM=y +CONFIG_CAPI_EICON=y +CONFIG_CAPI_TRACE=y +CONFIG_CARDBUS=y +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_CASSINI=m +CONFIG_CDU535=m +CONFIG_CD_NO_IDESCSI=y +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 +CONFIG_CFG80211=m +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T1_NAPI=y +CONFIG_CHELSIO_T3=m +CONFIG_CHR_DEV_OSST=m +CONFIG_CHR_DEV_SCH=m +CONFIG_CHR_DEV_ST=m +CONFIG_CICADA_PHY=m +CONFIG_CISS_SCSI_TAPE=y +# CONFIG_COMPUTONE is not set +CONFIG_COPS=m +CONFIG_COPS_DAYNA=y +CONFIG_COPS_TANGENT=y +CONFIG_COSA=m +CONFIG_CPU5_WDT=m +CONFIG_CPUSETS=y +CONFIG_CPU_FREQ_TABLE=m +CONFIG_CRYPTO_ABLKCIPHER=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_DEV_PADLOCK=y +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CS5535_GPIO=m +CONFIG_CS89x0=m +CONFIG_CYCLADES=m +CONFIG_CYCLADES_SYNC=m +CONFIG_CYCLOMX_X25=y +# CONFIG_CYZ_INTR is not set +CONFIG_DAB=y +CONFIG_DAVICOM_PHY=m +CONFIG_DE2104X=m +CONFIG_DE4X5=m +CONFIG_DE600=m +CONFIG_DE620=m +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DECNET_NF_GRABULATOR=m +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_DEFXX=m +# CONFIG_DEFXX_MMIO is not set +CONFIG_DEPCA=m +CONFIG_DE_AOC=y +CONFIG_DGRS=m +CONFIG_DIGIEPCA=m +CONFIG_DISPLAY_SUPPORT=m +CONFIG_DL2K=m +CONFIG_DLCI=m +CONFIG_DLCI_MAX=8 +CONFIG_DM9102=m +CONFIG_DONGLE=y +CONFIG_DRM=m +CONFIG_DRM_I810=m +CONFIG_DRM_I830=m +CONFIG_DRM_I915=m +CONFIG_DRM_MGA=m +CONFIG_DRM_R128=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_SAVAGE=m +CONFIG_DRM_SIS=m +CONFIG_DRM_TDFX=m +CONFIG_DRM_VIA=m +CONFIG_DSCC4=m +CONFIG_DSCC4_PCISYNC=y +CONFIG_DSCC4_PCI_RST=y +CONFIG_DTLK=m +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_B2C2_FLEXCOP=m +# CONFIG_DVB_B2C2_FLEXCOP_DEBUG is not set +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_BT8XX=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_CAPTURE_DRIVERS=y +CONFIG_DVB_CINERGYT2=m +CONFIG_DVB_CINERGYT2_ENABLE_RC_INPUT_DEVICE=y +CONFIG_DVB_CINERGYT2_QUERY_INTERVAL=250 +CONFIG_DVB_CINERGYT2_RC_QUERY_INTERVAL=100 +CONFIG_DVB_CINERGYT2_STREAM_BUF_SIZE=512 +CONFIG_DVB_CINERGYT2_STREAM_URB_COUNT=32 +CONFIG_DVB_CINERGYT2_TUNING=y +CONFIG_DVB_CORE=m +CONFIG_DVB_CORE_ATTACH=y +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +# CONFIG_DVB_FE_CUSTOMISE is not set +CONFIG_DVB_ISL6421=m +CONFIG_DVB_L64781=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_MT312=m +CONFIG_DVB_MT352=m +CONFIG_DVB_NXT200X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_PLL=m +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_STV0297=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TDA827X=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_TUNER_MT2060=m +CONFIG_DVB_TUNER_QT1010=m +CONFIG_DVB_USB=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_CXUSB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_DIBUSB_MB=m +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_VES1820=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_ZL10353=m +CONFIG_E100=m +CONFIG_E1000=m +# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set +CONFIG_E1000_NAPI=y +CONFIG_E2100=m +CONFIG_ECONET=m +CONFIG_ECONET_AUNUDP=y +CONFIG_ECONET_NATIVE=y +CONFIG_EDAC=m +# CONFIG_EDAC_AMD76X is not set +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_E752X=m +CONFIG_EDAC_E7XXX=m +CONFIG_EDAC_I82860=m +CONFIG_EDAC_I82875P=m +CONFIG_EDAC_MM_EDAC=m +CONFIG_EDAC_POLL=y +CONFIG_EDAC_R82600=m +CONFIG_EEPRO100=m +CONFIG_EEXPRESS=m +CONFIG_EEXPRESS_PRO=m +CONFIG_EISA=y +CONFIG_EISA_NAMES=y +CONFIG_EISA_PCI_EISA=y +CONFIG_EISA_VIRTUAL_ROOT=y +CONFIG_EISA_VLB_PRIMING=y +CONFIG_EL1=m +CONFIG_EL16=m +CONFIG_EL2=m +CONFIG_EL3=m +CONFIG_ELMC=m +CONFIG_ELMC_II=m +CONFIG_ELPLUS=m +CONFIG_EPIC100=m +CONFIG_ES3210=m +CONFIG_ESI_DONGLE=m +# CONFIG_ESPSERIAL is not set +CONFIG_ETH16I=m +CONFIG_EUROTECH_WDT=m +CONFIG_EWRK3=m +CONFIG_FARSYNC=m +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +CONFIG_FB_ARK=m +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_ATY_CT=y +CONFIG_FB_ATY_GENERIC_LCD=y +CONFIG_FB_ATY_GX=y +CONFIG_FB_BACKLIGHT=y +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CYBER2000=m +CONFIG_FB_CYBLA=m +CONFIG_FB_DDC=m +CONFIG_FB_GEODE=y +CONFIG_FB_GEODE_GX=m +CONFIG_FB_GEODE_GX1=m +# CONFIG_FB_GEODE_GX_SET_FBSIZE is not set +CONFIG_FB_HECUBA=m +CONFIG_FB_HGA=m +# CONFIG_FB_HGA_ACCEL is not set +CONFIG_FB_I810=m +# CONFIG_FB_I810_GTF is not set +CONFIG_FB_IMAC=y +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_KYRO=m +CONFIG_FB_LE80578=m +CONFIG_FB_MATROX=m +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MULTIHEAD=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_NVIDIA_BACKLIGHT=y +# CONFIG_FB_NVIDIA_DEBUG is not set +CONFIG_FB_NVIDIA_I2C=y +CONFIG_FB_PM2=m +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RIVA=m +CONFIG_FB_RIVA_BACKLIGHT=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_I2C=y +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SAVAGE_ACCEL=y +CONFIG_FB_SAVAGE_I2C=y +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_SM501=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_TRIDENT=m +# CONFIG_FB_TRIDENT_ACCEL is not set +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +# CONFIG_FIXED_MII_100_FDX is not set +# CONFIG_FIXED_MII_10_FDX is not set +CONFIG_FIXED_PHY=m +CONFIG_FORCEDETH=m +# CONFIG_FORCEDETH_NAPI is not set +CONFIG_FTL=m +CONFIG_FUSION=y +CONFIG_FUSION_CTL=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_LAN=m +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_SAS=m +CONFIG_FUSION_SPI=m +CONFIG_GACT_PROB=y +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GIGASET_BASE=m +# CONFIG_GIGASET_DEBUG is not set +CONFIG_GIGASET_M101=m +CONFIG_GIGASET_M105=m +# CONFIG_GIGASET_UNDOCREQ is not set +CONFIG_GIRBIL_DONGLE=m +CONFIG_GSCD=m +CONFIG_HAMACHI=m +CONFIG_HAMRADIO=y +CONFIG_HAPPYMEAL=m +CONFIG_HDLC=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_X25=m +CONFIG_HERMES=m +CONFIG_HID=m +# CONFIG_HID_DEBUG is not set +# CONFIG_HID_FF is not set +CONFIG_HIGHMEM4G=y +# CONFIG_HIGHMEM64G is not set +CONFIG_HIPPI=y +CONFIG_HISAX_16_0=y +CONFIG_HISAX_16_3=y +CONFIG_HISAX_1TR6=y +CONFIG_HISAX_ASUSCOM=y +CONFIG_HISAX_AVM_A1=y +CONFIG_HISAX_AVM_A1_CS=m +CONFIG_HISAX_AVM_A1_PCMCIA=y +CONFIG_HISAX_BKM_A4T=y +# CONFIG_HISAX_DEBUG is not set +CONFIG_HISAX_DIEHLDIVA=y +CONFIG_HISAX_ELSA=y +CONFIG_HISAX_ELSA_CS=m +CONFIG_HISAX_ENTERNOW_PCI=y +CONFIG_HISAX_EURO=y +CONFIG_HISAX_FRITZPCI=y +CONFIG_HISAX_FRITZ_PCIPNP=m +CONFIG_HISAX_GAZEL=y +CONFIG_HISAX_HDLC=y +CONFIG_HISAX_HFC4S8S=m +CONFIG_HISAX_HFCS=y +CONFIG_HISAX_HFCUSB=m +CONFIG_HISAX_HFC_PCI=y +CONFIG_HISAX_HFC_SX=y +CONFIG_HISAX_HSTSAPHIR=y +CONFIG_HISAX_ISURF=y +CONFIG_HISAX_IX1MICROR2=y +CONFIG_HISAX_MAX_CARDS=8 +CONFIG_HISAX_MIC=y +CONFIG_HISAX_NETJET=y +CONFIG_HISAX_NETJET_U=y +CONFIG_HISAX_NI1=y +CONFIG_HISAX_NICCY=y +# CONFIG_HISAX_NO_KEYPAD is not set +# CONFIG_HISAX_NO_LLC is not set +# CONFIG_HISAX_NO_SENDCOMPLETE is not set +CONFIG_HISAX_S0BOX=y +CONFIG_HISAX_SCT_QUADRO=y +CONFIG_HISAX_SEDLBAUER=y +CONFIG_HISAX_SEDLBAUER_CS=m +CONFIG_HISAX_SPORTSTER=y +CONFIG_HISAX_ST5481=m +CONFIG_HISAX_TELEINT=y +CONFIG_HISAX_TELESPCI=y +CONFIG_HISAX_TELES_CS=m +CONFIG_HISAX_W6692=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_CS=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTESS_SV11=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=m +CONFIG_HOTPLUG_PCI_ACPI=m +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_COMPAQ=m +CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM=y +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_FAKE=m +CONFIG_HOTPLUG_PCI_IBM=m +CONFIG_HOTPLUG_PCI_PCIE=m +# CONFIG_HOTPLUG_PCI_PCIE_POLL_EVENT_MODE is not set +CONFIG_HOTPLUG_PCI_SHPC=m +CONFIG_HP100=m +CONFIG_HPET_EMULATE_RTC=y +CONFIG_HPLAN=m +CONFIG_HPLAN_PLUS=m +# CONFIG_HPT34X_AUTODMA is not set +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set +CONFIG_HWMON_VID=m +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_GEODE=m +CONFIG_HW_RANDOM_VIA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +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_I801=m +CONFIG_I2C_I810=m +CONFIG_I2C_ISA=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_PCA_ISA=m +CONFIG_I2C_PROSAVAGE=m +CONFIG_I2C_SAVAGE4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VOODOO3=m +CONFIG_I2O=m +CONFIG_I2O_BLOCK=m +CONFIG_I2O_BUS=m +CONFIG_I2O_CONFIG=m +CONFIG_I2O_CONFIG_OLD_IOCTL=y +CONFIG_I2O_EXT_ADAPTEC=y +CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y +CONFIG_I2O_PROC=m +CONFIG_I2O_SCSI=m +CONFIG_I6300ESB_WDT=m +CONFIG_I82092=m +CONFIG_I82365=m +CONFIG_I8K=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_IBMLANA=m +CONFIG_IBMLS=m +# CONFIG_IBMMCA_SCSI_DEV_RESET is not set +CONFIG_IBMMCA_SCSI_ORDER_STANDARD=y +CONFIG_IBMOL=m +CONFIG_IBMTR=m +CONFIG_IBM_ASM=m +# CONFIG_IDEDMA_IVB is not set +# CONFIG_IDEDMA_ONLYDISK is not set +CONFIG_IDEPCI_SHARE_IRQ=y +# CONFIG_IDE_CHIPSETS is not set +CONFIG_IDE_PROC_FS=y +CONFIG_IEEE1394=m +CONFIG_IEEE1394_DV1394=m +CONFIG_IEEE1394_ETH1394=m +CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y +CONFIG_IEEE1394_OHCI1394=m +CONFIG_IEEE1394_PCILYNX=m +CONFIG_IEEE1394_RAWIO=m +CONFIG_IEEE1394_SBP2=m +# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set +# CONFIG_IEEE1394_VERBOSEDEBUG is not set +CONFIG_IEEE1394_VIDEO1394=m +CONFIG_IEEE80211=m +CONFIG_IEEE80211_CRYPT_CCMP=m +CONFIG_IEEE80211_CRYPT_TKIP=m +CONFIG_IEEE80211_CRYPT_WEP=m +# CONFIG_IEEE80211_DEBUG is not set +CONFIG_IEEE80211_SOFTMAC=m +# CONFIG_IEEE80211_SOFTMAC_DEBUG is not set +CONFIG_IFB=m +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_AMSO1100=m +CONFIG_INFINIBAND_AMSO1100_DEBUG=y +CONFIG_INFINIBAND_CXGB3=m +# CONFIG_INFINIBAND_CXGB3_DEBUG is not set +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +CONFIG_INFINIBAND_IPOIB_DEBUG=y +# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFTL=m +CONFIG_INPUT_ATI_REMOTE=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_POLLDEV=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INPUT_UINPUT=m +CONFIG_INPUT_WISTRON_BTNS=m +CONFIG_INPUT_YEALINK=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_OWNER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_QUEUE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_TARGET_LOG=m +CONFIG_IP6_NF_TARGET_REJECT=m +# CONFIG_IPC_NS is not set +CONFIG_IPPP_FILTER=y +# CONFIG_IPV6_MULTIPLE_TABLES is not set +CONFIG_IPW2100=m +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2100_MONITOR=y +CONFIG_IPW2200=m +# CONFIG_IPW2200_DEBUG is not set +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IRCOMM=m +CONFIG_IRDA=m +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_DEBUG=y +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +CONFIG_IRLAN=m +CONFIG_IRNET=m +# CONFIG_IRQBALANCE is not set +CONFIG_IRTTY_SIR=m +CONFIG_ISA=y +CONFIG_ISAPNP=y +CONFIG_ISCSI_TCP=m +CONFIG_ISDN=m +CONFIG_ISDN_AUDIO=y +CONFIG_ISDN_CAPI=m +CONFIG_ISDN_CAPI_CAPI20=m +CONFIG_ISDN_CAPI_CAPIDRV=m +CONFIG_ISDN_CAPI_CAPIFS=m +CONFIG_ISDN_CAPI_CAPIFS_BOOL=y +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_ISDN_DIVAS=m +CONFIG_ISDN_DIVAS_BRIPCI=y +CONFIG_ISDN_DIVAS_DIVACAPI=m +CONFIG_ISDN_DIVAS_MAINT=m +CONFIG_ISDN_DIVAS_PRIPCI=y +CONFIG_ISDN_DIVAS_USERIDI=m +CONFIG_ISDN_DIVERSION=m +CONFIG_ISDN_DRV_ACT2000=m +CONFIG_ISDN_DRV_AVMB1_AVM_CS=m +CONFIG_ISDN_DRV_AVMB1_B1ISA=m +CONFIG_ISDN_DRV_AVMB1_B1PCI=m +CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y +CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m +CONFIG_ISDN_DRV_AVMB1_C4=m +CONFIG_ISDN_DRV_AVMB1_T1ISA=m +CONFIG_ISDN_DRV_AVMB1_T1PCI=m +CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y +CONFIG_ISDN_DRV_GIGASET=m +CONFIG_ISDN_DRV_HISAX=m +CONFIG_ISDN_DRV_ICN=m +CONFIG_ISDN_DRV_PCBIT=m +CONFIG_ISDN_DRV_SC=m +CONFIG_ISDN_I4L=m +CONFIG_ISDN_MPP=y +CONFIG_ISDN_PPP=y +CONFIG_ISDN_PPP_BSDCOMP=m +CONFIG_ISDN_PPP_VJ=y +CONFIG_ISDN_TTY_FAX=y +CONFIG_ISDN_X25=y +# CONFIG_ISI is not set +CONFIG_ISP16_CDI=m +CONFIG_IXGB=m +# CONFIG_IXGB_NAPI is not set +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_XATTR is not set +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_ZLIB=y +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_232=y +CONFIG_JOYSTICK_IFORCE_USB=y +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_K8_NB=y +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_STOWAWAY=m +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KINGSUN_DONGLE=m +CONFIG_KS0108=m +CONFIG_KS0108_DELAY=2 +CONFIG_KS0108_PORT=0x378 +CONFIG_KVM=m +CONFIG_LANCE=m +CONFIG_LANMEDIA=m +CONFIG_LAPB=m +CONFIG_LAPBETHER=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LEDS_CLASS=m +CONFIG_LEDS_NET48XX=m +# CONFIG_LEDS_TRIGGERS is not set +CONFIG_LEDS_WRAP=m +CONFIG_LIBERTAS=m +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_USB=m +CONFIG_LITELINK_DONGLE=m +CONFIG_LLC=y +CONFIG_LNE390=m +CONFIG_LOCK_KERNEL=y +CONFIG_LP486E=m +CONFIG_LTPC=m +CONFIG_LXT_PHY=m +# CONFIG_M486 is not set +CONFIG_M586=y +# CONFIG_M686 is not set +CONFIG_MA600_DONGLE=m +CONFIG_MAC80211=m +# CONFIG_MAC80211_DEBUG is not set +CONFIG_MAC80211_DEBUGFS=y +CONFIG_MACHZ_WDT=m +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MAC_EMUMOUSEBTN=y +CONFIG_MADGEMC=m +CONFIG_MARVELL_PHY=m +# CONFIG_MATH_EMULATION is not set +CONFIG_MCA=y +CONFIG_MCA_LEGACY=y +# CONFIG_MCA_PROC_FS is not set +CONFIG_MCDX=m +CONFIG_MCP2120_DONGLE=m +CONFIG_MCS_FIR=m +CONFIG_MDA_CONSOLE=m +CONFIG_MD_RAID10=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MFD_SM501=m +CONFIG_MINIX_FS=m +CONFIG_MIXCOMWD=m +CONFIG_MKISS=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_INFINIBAND=m +CONFIG_MMC=m +CONFIG_MMC_BLOCK=m +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_SDHCI=m +CONFIG_MMC_TIFM_SD=m +# CONFIG_MMC_UNSAFE_RESUME is not set +CONFIG_MMC_WBSD=m +CONFIG_MOUSE_APPLETOUCH=m +# CONFIG_MOUSE_ATIXL is not set +CONFIG_MOUSE_INPORT=m +CONFIG_MOUSE_LOGIBM=m +CONFIG_MOUSE_PC110PAD=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_VSXXXAA=m +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +CONFIG_MOXA_SMARTIO_NEW=m +CONFIG_MSI_LAPTOP=m +CONFIG_MTD=m +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTD_ABSENT=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK2MTD=m +CONFIG_MTD_BLOCK_RO=m +CONFIG_MTD_CFI=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_CFI_I4 is not set +# CONFIG_MTD_CFI_I8 is not set +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_CHAR=m +CONFIG_MTD_CK804XROM=m +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_CONCAT=m +CONFIG_MTD_DATAFLASH=m +# CONFIG_MTD_DEBUG is not set +CONFIG_MTD_DILNETPC=m +CONFIG_MTD_DILNETPC_BOOTSIZE=0x80000 +CONFIG_MTD_DOC2000=m +CONFIG_MTD_DOC2001=m +CONFIG_MTD_DOC2001PLUS=m +CONFIG_MTD_DOCECC=m +CONFIG_MTD_DOCPROBE=m +CONFIG_MTD_DOCPROBE_ADDRESS=0 +# CONFIG_MTD_DOCPROBE_ADVANCED is not set +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_GEN_PROBE=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_L440GX=m +CONFIG_MTD_M25P80=m +CONFIG_MTD_MAP_BANK_WIDTH_1=y +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set +CONFIG_MTD_MAP_BANK_WIDTH_2=y +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set +CONFIG_MTD_MAP_BANK_WIDTH_4=y +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set +CONFIG_MTD_MTDRAM=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_CS553X=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +# CONFIG_MTD_NAND_ECC_SMC is not set +CONFIG_MTD_NAND_IDS=m +# CONFIG_MTD_NAND_MUSEUM_IDS is not set +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_PLATFORM=m +# CONFIG_MTD_NAND_VERIFY_WRITE is not set +CONFIG_MTD_NETSC520=m +CONFIG_MTD_NETtel=m +CONFIG_MTD_ONENAND=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_PARTITIONS=y +CONFIG_MTD_PCI=m +CONFIG_MTD_PHRAM=m +CONFIG_MTD_PHYSMAP=m +CONFIG_MTD_PHYSMAP_BANKWIDTH=2 +CONFIG_MTD_PHYSMAP_LEN=0x4000000 +CONFIG_MTD_PHYSMAP_START=0x8000000 +CONFIG_MTD_PLATRAM=m +CONFIG_MTD_PMC551=m +# CONFIG_MTD_PMC551_BUGFIX is not set +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_PNC2000=m +CONFIG_MTD_RAM=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +CONFIG_MTD_REDBOOT_PARTS=m +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +CONFIG_MTD_ROM=m +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_SC520CDP=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_SCx200_DOCFLASH=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_TS5500=m +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_BEB_RESERVE=1 +# CONFIG_MTD_UBI_DEBUG is not set +CONFIG_MTD_UBI_GLUEBI=y +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MWAVE=m +CONFIG_MYRI10GE=m +CONFIG_N2=m +CONFIG_NATSEMI=m +CONFIG_NCPFS_EXTRAS=y +CONFIG_NCPFS_IOCTL_LOCKING=y +CONFIG_NCPFS_NFS_NS=y +CONFIG_NCPFS_NLS=y +CONFIG_NCPFS_OS2_NS=y +CONFIG_NCPFS_PACKET_SIGNING=y +# CONFIG_NCPFS_SMALLDOS is not set +CONFIG_NCPFS_STRONG=y +CONFIG_NCP_FS=m +CONFIG_NE2000=m +CONFIG_NE2_MCA=m +CONFIG_NE3210=m +# CONFIG_NETLABEL is not set +CONFIG_NETROM=m +CONFIG_NETXEN_NIC=m +CONFIG_NET_ACT_GACT=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_DCCPPROBE=m +CONFIG_NET_FC=y +CONFIG_NET_ISA=y +CONFIG_NET_PCMCIA=y +CONFIG_NET_POCKET=y +CONFIG_NET_SCH_ATM=m +CONFIG_NET_TCPPROBE=m +CONFIG_NET_TULIP=y +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_RACAL=y +CONFIG_NET_VENDOR_SMC=y +CONFIG_NEW_LEDS=y +# CONFIG_NFSD_V3_ACL is not set +# CONFIG_NFS_V3_ACL is not set +CONFIG_NFS_V4=y +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IPV6=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_PROTO_SCTP=m +CONFIG_NF_NAT_H323=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NI52=m +CONFIG_NI65=m +# CONFIG_NORTEL_HERMES is not set +CONFIG_NO_HZ=y +CONFIG_NR_CPUS=8 +CONFIG_NS83820=m +CONFIG_NSC_FIR=m +CONFIG_NSC_GPIO=m +# CONFIG_NTFS_RW is not set +CONFIG_N_HDLC=m +CONFIG_OLD_BELKIN_DONGLE=m +CONFIG_OPTCD=m +CONFIG_PARIDE=m +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_BPCK6=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_EPAT=m +# CONFIG_PARIDE_EPATC8 is not set +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PG=m +CONFIG_PARIDE_PT=m +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_NOT_PC=y +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_PCMCIA=m +CONFIG_PARPORT_SERIAL=m +CONFIG_PATA_CS5520=m +CONFIG_PATA_EFAR=m +# CONFIG_PATA_ISAPNP is not set +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +# CONFIG_PATA_LEGACY is not set +CONFIG_PATA_MARVELL=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_QDI=m +CONFIG_PATA_RZ1000=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_SIS=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_WINBOND=m +# CONFIG_PATA_WINBOND_VLB is not set +CONFIG_PC300=m +# CONFIG_PC300TOO is not set +CONFIG_PC300_MLPPP=y +CONFIG_PC8736x_GPIO=m +CONFIG_PC87413_WDT=m +CONFIG_PCCARD=m +CONFIG_PCCARD_NONSTATIC=m +CONFIG_PCI200SYN=m +CONFIG_PCIEAER=y +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_ATMEL=m +# CONFIG_PCI_HERMES is not set +CONFIG_PCMCIA=m +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_PCMCIA_AXNET=m +# CONFIG_PCMCIA_DEBUG is not set +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_IBMTR=m +CONFIG_PCMCIA_IOCTL=y +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_PCMCIA_NETWAVE=m +CONFIG_PCMCIA_NINJA_SCSI=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_PROBE=y +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_PCMCIA_WAVELAN=m +CONFIG_PCMCIA_WL3501=m +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_PCWATCHDOG=m +CONFIG_PD6729=m +CONFIG_PDC202XX_BURST=y +CONFIG_PDC_ADMA=m +CONFIG_PHANTOM=m +CONFIG_PHONE=m +CONFIG_PHONE_IXJ=m +CONFIG_PHONE_IXJ_PCMCIA=m +CONFIG_PLIP=m +# CONFIG_PLX_HERMES is not set +CONFIG_PNPBIOS=y +CONFIG_PNPBIOS_PROC_FS=y +CONFIG_PPPOATM=m +CONFIG_PREEMPT_BKL=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +CONFIG_PRISM54=m +CONFIG_PROTEON=m +CONFIG_PSS_MIXER=y +CONFIG_QLA3XXX=m +CONFIG_QSEMI_PHY=m +CONFIG_R3964=m +CONFIG_R8169=m +# CONFIG_R8169_NAPI is not set +CONFIG_R8169_VLAN=y +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_AZTECH=m +CONFIG_RADIO_CADET=m +CONFIG_RADIO_GEMTEK=m +CONFIG_RADIO_GEMTEK_PCI=m +CONFIG_RADIO_MAESTRO=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_RTRACK=m +CONFIG_RADIO_RTRACK2=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 +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_DEC16=y +# CONFIG_RESOURCES_64BIT is not set +CONFIG_RFD_FTL=m +CONFIG_RFKILL=m +CONFIG_RFKILL_INPUT=m +# CONFIG_RIO is not set +CONFIG_ROADRUNNER=m +# CONFIG_ROADRUNNER_LARGE_RINGS is not set +CONFIG_ROCKETPORT=m +CONFIG_ROMFS_FS=m +CONFIG_ROSE=m +CONFIG_RTC=y +CONFIG_RTC_CLASS=m +# CONFIG_RTC_DRV_CMOS is not set +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_TEST=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_INTF_DEV=y +CONFIG_RTC_INTF_DEV_UIE_EMUL=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_LIB=m +CONFIG_RXKAD=m +CONFIG_S2IO=m +# CONFIG_S2IO_NAPI is not set +CONFIG_SATA_AHCI=m +CONFIG_SATA_INIC162X=m +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIL24=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_SX4=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m +CONFIG_SBC8360_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_SBNI=m +# CONFIG_SBNI_MULTILINE is not set +CONFIG_SC1200_WDT=m +CONFIG_SC520_WDT=m +CONFIG_SC6600=y +CONFIG_SC6600_CDROM=4 +CONFIG_SC6600_CDROMBASE=0x0 +CONFIG_SC6600_JOY=y +CONFIG_SC92031=m +CONFIG_SCC=m +# CONFIG_SCC_DELAY is not set +# CONFIG_SCC_TRXECHO is not set +CONFIG_SCHED_MC=y +CONFIG_SCHED_SMT=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_7000FASST=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AHA152X=m +CONFIG_SCSI_AHA1542=m +CONFIG_SCSI_AHA1740=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_DC390T=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_DTC3280=m +CONFIG_SCSI_EATA=m +CONFIG_SCSI_EATA_LINKED_COMMANDS=y +CONFIG_SCSI_EATA_MAX_TAGS=16 +CONFIG_SCSI_EATA_TAGGED_QUEUE=y +CONFIG_SCSI_FD_MCS=m +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_GDTH=m +CONFIG_SCSI_GENERIC_NCR5380=m +CONFIG_SCSI_GENERIC_NCR5380_MMIO=m +CONFIG_SCSI_GENERIC_NCR53C400=y +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_IBMMCA=m +CONFIG_SCSI_IMM=m +CONFIG_SCSI_IN2000=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPR=m +# CONFIG_SCSI_IPR_DUMP is not set +# CONFIG_SCSI_IPR_TRACE is not set +CONFIG_SCSI_IPS=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_NCR53C406A=m +CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8 +CONFIG_SCSI_NCR53C8XX_MAX_TAGS=4 +CONFIG_SCSI_NCR53C8XX_SYNC=5 +CONFIG_SCSI_NCR_D700=m +CONFIG_SCSI_NCR_Q720=m +CONFIG_SCSI_NSP32=m +CONFIG_SCSI_PAS16=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_PSI240I=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLOGIC_FAS=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SEAGATE=m +CONFIG_SCSI_SIM710=m +CONFIG_SCSI_SRP=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C416=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_T128=m +CONFIG_SCSI_TGT=m +CONFIG_SCSI_U14_34F=m +CONFIG_SCSI_U14_34F_LINKED_COMMANDS=y +CONFIG_SCSI_U14_34F_MAX_TAGS=8 +CONFIG_SCSI_U14_34F_TAGGED_QUEUE=y +CONFIG_SCSI_ULTRASTOR=m +CONFIG_SCx200=m +CONFIG_SCx200HR_TIMER=m +CONFIG_SCx200_ACB=m +CONFIG_SCx200_GPIO=m +CONFIG_SCx200_I2C=m +CONFIG_SCx200_I2C_SCL=12 +CONFIG_SCx200_I2C_SDA=13 +CONFIG_SCx200_WDT=m +CONFIG_SDLA=m +CONFIG_SEALEVEL_4021=m +CONFIG_SEEQ8005=m +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_DS1337=m +CONFIG_SENSORS_DS1374=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_EEPROM=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_FSCHER=m +CONFIG_SENSORS_FSCPOS=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=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_MAX6650=m +CONFIG_SENSORS_MAX6875=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCA9539=m +CONFIG_SENSORS_PCF8574=m +CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83L785TS=m +CONFIG_SERIAL_8250_ACCENT=m +CONFIG_SERIAL_8250_BOCA=m +CONFIG_SERIAL_8250_CS=m +CONFIG_SERIAL_8250_EXAR_ST16C554=m +CONFIG_SERIAL_8250_FOURPORT=m +CONFIG_SERIAL_8250_HUB6=m +CONFIG_SERIAL_8250_MCA=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_SERPORT=m +CONFIG_SGI_IOC4=m +CONFIG_SIGMATEL_FIR=m +CONFIG_SIS190=m +CONFIG_SIS900=m +CONFIG_SJCD=m +CONFIG_SKFP=m +CONFIG_SKGE=m +CONFIG_SKISA=m +CONFIG_SKY2=m +CONFIG_SMC9194=m +CONFIG_SMCTR=m +CONFIG_SMC_IRCC_FIR=m +CONFIG_SMP=y +CONFIG_SMSC37B787_WDT=m +CONFIG_SMSC_PHY=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AD1816A=m +CONFIG_SND_AD1848=m +CONFIG_SND_AD1848_LIB=m +CONFIG_SND_AD1889=m +CONFIG_SND_ADLIB=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ALS100=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AZT2320=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMI8330=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_CS4231=m +CONFIG_SND_CS4231_LIB=m +CONFIG_SND_CS4232=m +CONFIG_SND_CS4236=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CS5535AUDIO=m +CONFIG_SND_DARLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_DT019X=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_ES1688=m +CONFIG_SND_ES18XX=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES968=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_GINA20=m +CONFIG_SND_GINA24=m +CONFIG_SND_GUSCLASSIC=m +CONFIG_SND_GUSEXTREME=m +CONFIG_SND_GUSMAX=m +CONFIG_SND_GUS_SYNTH=m +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_HWDEP=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_INTERWAVE=m +CONFIG_SND_INTERWAVE_STB=m +CONFIG_SND_KORG1212=m +CONFIG_SND_KORG1212_FIRMWARE_IN_KERNEL=y +CONFIG_SND_LAYLA20=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_FIRMWARE_IN_KERNEL=y +CONFIG_SND_MIA=m +CONFIG_SND_MIRO=m +CONFIG_SND_MIXART=m +CONFIG_SND_MONA=m +CONFIG_SND_MPU401=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_NM256=m +CONFIG_SND_OPL3SA2=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL4_LIB=m +CONFIG_SND_OPTI92X_AD1848=m +CONFIG_SND_OPTI92X_CS4231=m +CONFIG_SND_OPTI93X=m +CONFIG_SND_PCXHR=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SB16=m +CONFIG_SND_SB16_CSP=y +CONFIG_SND_SB16_CSP_FIRMWARE_IN_KERNEL=y +CONFIG_SND_SB8=m +CONFIG_SND_SBAWE=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_SGALAXY=m +CONFIG_SND_SOC=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_SSCAPE=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_VX222=m +CONFIG_SND_VXPOCKET=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_WAVEFRONT=m +CONFIG_SND_WAVEFRONT_FIRMWARE_IN_KERNEL=y +CONFIG_SND_YMFPCI=m +CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y +CONFIG_SONYPI=m +CONFIG_SONYPI_COMPAT=y +CONFIG_SONY_LAPTOP=m +CONFIG_SOUND_AEDSP16=m +CONFIG_SOUND_MPU401=m +CONFIG_SOUND_MSS=m +CONFIG_SOUND_PSS=m +CONFIG_SOUND_TRIX=m +CONFIG_SOUND_UART6850=m +CONFIG_SOUND_VMIDI=m +CONFIG_SOUND_YM3812=m +CONFIG_SPECIALIX=m +# CONFIG_SPECIALIX_RTSCTS is not set +CONFIG_SPI=y +CONFIG_SPI_AT25=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +CONFIG_SPI_SPIDEV=m +CONFIG_SSFDC=m +CONFIG_STALDRV=y +CONFIG_STOP_MACHINE=y +CONFIG_STRIP=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_SUNGEM=m +CONFIG_SUSPEND_SMP=y +CONFIG_SX=m +CONFIG_SYNCLINK=m +CONFIG_SYNCLINKMP=m +CONFIG_SYNCLINK_CS=m +CONFIG_SYNCLINK_GT=m +CONFIG_SYSV68_PARTITION=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_GTCO=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_WACOM=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_TIS=m +CONFIG_TCG_TPM=m +CONFIG_TCIC=m +CONFIG_TEKRAM_DONGLE=m +CONFIG_TELCLOCK=m +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_BAY=y +# CONFIG_THINKPAD_ACPI_DEBUG is not set +CONFIG_TIFM_7XX1=m +CONFIG_TIFM_CORE=m +CONFIG_TIGON3=m +CONFIG_TIPAR=m +CONFIG_TLAN=m +# CONFIG_TMD_HERMES is not set +CONFIG_TMS380TR=m +CONFIG_TMSPCI=m +# CONFIG_TOIM3232_DONGLE is not set +CONFIG_TOSHIBA=m +CONFIG_TOSHIBA_FIR=m +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TR=y +CONFIG_TULIP=m +# CONFIG_TULIP_MMIO is not set +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_NAPI is not set +CONFIG_TUNER_3036=m +CONFIG_TYPHOON=m +CONFIG_ULI526X=m +CONFIG_ULTRA=m +CONFIG_ULTRA32=m +CONFIG_ULTRAMCA=m +CONFIG_USBPCWATCHDOG=m +CONFIG_USB_ACM=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_ARMLINUX=y +CONFIG_USB_ATM=m +CONFIG_USB_AUERSWALD=m +CONFIG_USB_BELKIN=y +CONFIG_USB_BERRY_CHARGE=m +CONFIG_USB_CATC=m +CONFIG_USB_CXACRU=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_DABUSB=m +CONFIG_USB_DSBR=m +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_SPLIT_ISO=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EMI26=m +CONFIG_USB_EMI62=m +CONFIG_USB_EPSON2888=y +CONFIG_USB_ET61X251=m +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +CONFIG_USB_EZUSB=y +CONFIG_USB_FILE_STORAGE=m +# CONFIG_USB_FILE_STORAGE_TEST is not set +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_GADGET=m +CONFIG_USB_GADGETFS=m +# CONFIG_USB_GADGET_AT91 is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +CONFIG_USB_GADGET_DUALSPEED=y +# CONFIG_USB_GADGET_DUMMY_HCD is not set +# CONFIG_USB_GADGET_FSL_USB2 is not set +# CONFIG_USB_GADGET_GOKU is not set +# CONFIG_USB_GADGET_LH7A40X is not set +CONFIG_USB_GADGET_NET2280=y +# CONFIG_USB_GADGET_OMAP is not set +# CONFIG_USB_GADGET_PXA2XX is not set +CONFIG_USB_GADGET_SELECTED=y +CONFIG_USB_G_SERIAL=m +CONFIG_USB_HID=m +CONFIG_USB_HIDDEV=y +CONFIG_USB_HIDINPUT_POWERBOOK=y +CONFIG_USB_IBMCAM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_IRDA=m +CONFIG_USB_KAWETH=m +CONFIG_USB_KBD=m +CONFIG_USB_KC2190=y +CONFIG_USB_KONICAWC=m +CONFIG_USB_LCD=m +CONFIG_USB_LD=m +CONFIG_USB_LED=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LIBUSUAL=y +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_MON=y +CONFIG_USB_MOUSE=m +CONFIG_USB_NET2280=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_RNDIS_HOST=m +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_OHCI_HCD=m +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_OV511 is not set +CONFIG_USB_PEGASUS=m +CONFIG_USB_PHIDGET=m +CONFIG_USB_PHIDGETKIT=m +CONFIG_USB_PHIDGETMOTORCONTROL=m +CONFIG_USB_PHIDGETSERVO=m +CONFIG_USB_PRINTER=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_QUICKCAM_MESSENGER=m +CONFIG_USB_RIO500=m +CONFIG_USB_RTL8150=m +CONFIG_USB_SE401=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_AIRPRIME=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CP2101=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_DEBUG=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_FUNSOFT=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_HP4X=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IPW=m +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_XIRCOM=m +CONFIG_USB_SISUSBVGA=m +# CONFIG_USB_SISUSBVGA_CON is not set +CONFIG_USB_SL811_CS=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SN9C102=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_STORAGE_ALAUDA=y +CONFIG_USB_STORAGE_DATAFAB=y +CONFIG_USB_STORAGE_DPCM=y +CONFIG_USB_STORAGE_FREECOM=y +CONFIG_USB_STORAGE_ISD200=y +CONFIG_USB_STORAGE_JUMPSHOT=y +CONFIG_USB_STORAGE_KARMA=y +CONFIG_USB_STORAGE_SDDR09=y +CONFIG_USB_STORAGE_SDDR55=y +CONFIG_USB_STORAGE_USBAT=y +CONFIG_USB_STV680=m +CONFIG_USB_SUSPEND=y +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_U132_HCD=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_USBNET=m +CONFIG_USB_USBNET_MII=m +CONFIG_USB_USS720=m +CONFIG_USB_VICAM=m +CONFIG_USB_W9968CF=m +CONFIG_USB_XUSBATM=m +CONFIG_USB_ZC0301=m +CONFIG_USB_ZD1201=m +CONFIG_USB_ZERO=m +CONFIG_USB_ZR364XX=m +# CONFIG_UTS_NS is not set +CONFIG_V4L_USB_DRIVERS=y +CONFIG_VERSION_SIGNATURE="Ubuntu 2.6.22-14.46-generic" +CONFIG_VIA_FIR=m +CONFIG_VIA_RHINE=m +# CONFIG_VIA_RHINE_MMIO is not set +# CONFIG_VIA_RHINE_NAPI is not set +CONFIG_VIA_VELOCITY=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +# CONFIG_VIDEO_ADV_DEBUG is not set +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT848=m +CONFIG_VIDEO_BT848_DVB=y +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_BTCX=m +CONFIG_VIDEO_BUF=m +CONFIG_VIDEO_BUF_DVB=m +CONFIG_VIDEO_BWQCAM=m +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_CAPTURE_DRIVERS=y +CONFIG_VIDEO_CPIA=m +CONFIG_VIDEO_CPIA2=m +CONFIG_VIDEO_CPIA_PP=m +CONFIG_VIDEO_CPIA_USB=m +CONFIG_VIDEO_CQCAM=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_CX25840=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_DEV=m +# CONFIG_VIDEO_DPC is not set +CONFIG_VIDEO_EM28XX=m +# CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_IR=m +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_MSP3400=m +# CONFIG_VIDEO_MXB is not set +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OVCAMCHIP=m +CONFIG_VIDEO_PMS=m +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_24XXX=y +CONFIG_VIDEO_PVRUSB2_29XXX=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_SAA5246A=m +CONFIG_VIDEO_SAA5249=m +CONFIG_VIDEO_SAA6588=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA7111=m +CONFIG_VIDEO_SAA7114=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7134_OSS=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_SAA7191=m +CONFIG_VIDEO_STRADIS=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TDA9875=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +CONFIG_VIDEO_USBVIDEO=m +CONFIG_VIDEO_USBVISION=m +CONFIG_VIDEO_V4L1=y +CONFIG_VIDEO_V4L1_COMPAT=y +CONFIG_VIDEO_V4L2=y +CONFIG_VIDEO_VIVI=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_W9966=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_ZORAN=m +CONFIG_VIDEO_ZORAN_AVS6EYES=m +CONFIG_VIDEO_ZORAN_BUZ=m +CONFIG_VIDEO_ZORAN_DC10=m +CONFIG_VIDEO_ZORAN_DC30=m +CONFIG_VIDEO_ZORAN_LML33=m +CONFIG_VIDEO_ZORAN_LML33R10=m +CONFIG_VIDEO_ZORAN_ZR36060=m +CONFIG_VITESSE_PHY=m +CONFIG_VLSI_FIR=m +CONFIG_VORTEX=m +CONFIG_W1=m +CONFIG_W1_CON=y +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_THERM=m +CONFIG_W83627HF_WDT=m +CONFIG_W83697HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_WAFER_WDT=m +CONFIG_WAN=y +CONFIG_WANXL=m +CONFIG_WAN_ROUTER=m +CONFIG_WAN_ROUTER_DRIVERS=m +CONFIG_WAVELAN=m +CONFIG_WD80x3=m +# CONFIG_WDC_ALI15X3 is not set +CONFIG_WDT=m +CONFIG_WDTPCI=m +CONFIG_WDT_501=y +CONFIG_WDT_501_PCI=y +CONFIG_WINBOND_840=m +CONFIG_WINBOND_FIR=m +CONFIG_WIRELESS_EXT=y +CONFIG_WLAN_80211=y +CONFIG_WLAN_PRE80211=y +CONFIG_X25=m +CONFIG_X25_ASY=m +CONFIG_X86_ALIGNMENT_16=y +CONFIG_X86_CPUFREQ_NFORCE2=m +CONFIG_X86_F00F_BUG=y +CONFIG_X86_HT=y +CONFIG_X86_SMP=y +CONFIG_X86_SPEEDSTEP_LIB=m +CONFIG_X86_SPEEDSTEP_SMI=m +CONFIG_X86_TRAMPOLINE=y +CONFIG_YAM=m +CONFIG_YELLOWFIN=m +CONFIG_YENTA=m +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_ZNET=m diff --git a/pts/benchmark-resources/build-linux-kernel/parse-results.php b/pts/benchmark-resources/build-linux-kernel/parse-results.php new file mode 100644 index 000000000..cba4bb10f --- /dev/null +++ b/pts/benchmark-resources/build-linux-kernel/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/build-linux-kernel/post.sh b/pts/benchmark-resources/build-linux-kernel/post.sh new file mode 100644 index 000000000..333094356 --- /dev/null +++ b/pts/benchmark-resources/build-linux-kernel/post.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd $1 +rm -rf linux-2.6.24/ diff --git a/pts/benchmark-resources/build-linux-kernel/time-compile-kernel b/pts/benchmark-resources/build-linux-kernel/time-compile-kernel new file mode 100755 index 000000000..1adf41c39 --- /dev/null +++ b/pts/benchmark-resources/build-linux-kernel/time-compile-kernel @@ -0,0 +1,14 @@ +#!/bin/sh + +if [ ! -f linux-2.6.24.tar.bz2 ] + then + echo "Linux Kernel Not Downloaded... Build Fails." + exit +fi + +rm -rf linux-2.6.24/ +tar -xjf linux-2.6.24.tar.bz2 +cp -f linux-2624-config linux-2.6.24/.config +cd linux-2.6.24/ +sleep 3 +/usr/bin/time -f "Kernel Build Time: %e Seconds" make -s -j $NUM_CPU_JOBS 2>&1 | grep Seconds diff --git a/pts/benchmark-resources/build-mplayer/install.sh b/pts/benchmark-resources/build-mplayer/install.sh new file mode 100644 index 000000000..7f110f2fb --- /dev/null +++ b/pts/benchmark-resources/build-mplayer/install.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +cd $1 + +if [ ! -f mplayer.tar.bz2 ] + then + wget http://www3.mplayerhq.hu/MPlayer/releases/MPlayer-1.0rc2.tar.bz2 -O mplayer.tar.bz2 +fi + +echo "#!/bin/sh + +if [ ! -f mplayer.tar.bz2 ] + then + echo \"MPlayer Not Installed... Build Failed.\" + exit +fi + +rm -rf MPlayer-1.0rc2/ +tar -xjf mplayer.tar.bz2 +cd MPlayer-1.0rc2/ +./configure > /dev/null +sleep 3 +/usr/bin/time -f \"MPlayer Build Time: %e Seconds\" make -s -j \$NUM_CPU_JOBS 2>&1 | grep Seconds" > time-compile-mplayer + +chmod +x time-compile-mplayer + diff --git a/pts/benchmark-resources/build-mplayer/parse-results.php b/pts/benchmark-resources/build-mplayer/parse-results.php new file mode 100644 index 000000000..36a1d3de9 --- /dev/null +++ b/pts/benchmark-resources/build-mplayer/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/build-mplayer/post.sh b/pts/benchmark-resources/build-mplayer/post.sh new file mode 100644 index 000000000..5bfcf1cd9 --- /dev/null +++ b/pts/benchmark-resources/build-mplayer/post.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd $1 +rm -rf MPlayer-1.0rc2/ diff --git a/pts/benchmark-resources/build-mplayer/pre.sh b/pts/benchmark-resources/build-mplayer/pre.sh new file mode 100644 index 000000000..5bfcf1cd9 --- /dev/null +++ b/pts/benchmark-resources/build-mplayer/pre.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd $1 +rm -rf MPlayer-1.0rc2/ diff --git a/pts/benchmark-resources/build-php/install.sh b/pts/benchmark-resources/build-php/install.sh new file mode 100644 index 000000000..25a35c008 --- /dev/null +++ b/pts/benchmark-resources/build-php/install.sh @@ -0,0 +1,42 @@ +#!/bin/sh + +cd $1 + +if [ ! -f libxml2.tar.gz ] + then + wget ftp://xmlsoft.org/libxml2/libxml2-2.6.31.tar.gz -O libxml2.tar.gz +fi + +if [ ! -f php5.tar.bz2 ] + then + wget http://us3.php.net/get/php-5.2.5.tar.bz2/from/us2.php.net/mirror -O php5.tar.bz2 +fi + +THIS_DIR=$(pwd) +mkdir $THIS_DIR/libxml2 + +tar -xvf libxml2.tar.gz + +cd libxml2-2.6.31/ +./configure --prefix=$THIS_DIR/libxml2 +make -j $NUM_CPU_JOBS +make install +cd .. + + +echo "#!/bin/sh + +if [ ! -f php5.tar.bz2 ] + then + echo \"PHP5 Not Downloaded... Build Fails.\" + exit +fi + +rm -rf php-5.2.5/ +tar -xjf php5.tar.bz2 +cd php-5.2.5/ +./configure --with-libxml-dir=$THIS_DIR/libxml2 > /dev/null +sleep 3 +/usr/bin/time -f \"PHP Build Time: %e Seconds\" make -s -j \$NUM_CPU_JOBS 2>&1 | grep Seconds" > time-compile-php + +chmod +x time-compile-php diff --git a/pts/benchmark-resources/build-php/parse-results.php b/pts/benchmark-resources/build-php/parse-results.php new file mode 100644 index 000000000..c108ce9a8 --- /dev/null +++ b/pts/benchmark-resources/build-php/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/build-php/post.sh b/pts/benchmark-resources/build-php/post.sh new file mode 100644 index 000000000..bcf885b9c --- /dev/null +++ b/pts/benchmark-resources/build-php/post.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd $1 +rm -rf php-5.2.5/ diff --git a/pts/benchmark-resources/compress-gzip/install.sh b/pts/benchmark-resources/compress-gzip/install.sh new file mode 100644 index 000000000..809d5e191 --- /dev/null +++ b/pts/benchmark-resources/compress-gzip/install.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +cd $1 + +if [ ! -f ../pts-shared/pts-wav-sample-file.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/pts-wav-sample-file.tar.bz2 -O ../pts-shared/pts-wav-sample-file.tar.bz2 +fi + +rm -f bigfile +tar -jxvf ../pts-shared/pts-wav-sample-file.tar.bz2 + +for i in 1 2 3 4 5 6 7 8 +do +cat pts-wav-sample-file.wav >> bigfile-orig +done + +echo "#!/bin/sh\ncp -f bigfile-orig bigfile\n/usr/bin/time -f \"Gzip Compress Time: %e Seconds\" gzip bigfile 2>&1 +rm -f bigfile.gz" > compress-gzip +chmod +x compress-gzip + diff --git a/pts/benchmark-resources/compress-gzip/parse-results.php b/pts/benchmark-resources/compress-gzip/parse-results.php new file mode 100644 index 000000000..6a0694460 --- /dev/null +++ b/pts/benchmark-resources/compress-gzip/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/compress-gzip/post.sh b/pts/benchmark-resources/compress-gzip/post.sh new file mode 100644 index 000000000..433ad37df --- /dev/null +++ b/pts/benchmark-resources/compress-gzip/post.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd $1 +rm -f bigfile.gz diff --git a/pts/benchmark-resources/compress-gzip/pre.sh b/pts/benchmark-resources/compress-gzip/pre.sh new file mode 100644 index 000000000..433ad37df --- /dev/null +++ b/pts/benchmark-resources/compress-gzip/pre.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd $1 +rm -f bigfile.gz diff --git a/pts/benchmark-resources/doom3-demo/install.sh b/pts/benchmark-resources/doom3-demo/install.sh new file mode 100755 index 000000000..14ff1374f --- /dev/null +++ b/pts/benchmark-resources/doom3-demo/install.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +cd $1 + +if [ ! -f doom3-demo-linux.run ] + then + wget ftp://ftp.idsoftware.com/idstuff/doom3/linux/doom3-linux-1.1.1286-demo.x86.run -O doom3-demo-linux.run +fi +if [ ! -f doom3-pts-demo.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/doom3-pts-demo-1.tar.bz2 -O doom3-pts-demo.tar.bz2 +fi + +chmod +x doom3-demo-linux.run + +./doom3-demo-linux.run --noexec --target . +ln bin/Linux/x86/doom.x86 doom3-real + +echo "#!/bin/sh\n./doom3-real \$@ | grep fps" > doom3 +chmod +x doom3 + +tar -jxvf doom3-pts-demo.tar.bz2 +mkdir demo/demos +mv -f doom3-pts-demo.demo demo/demos/doom3-pts-demo diff --git a/pts/benchmark-resources/doom3-demo/parse-results.php b/pts/benchmark-resources/doom3-demo/parse-results.php new file mode 100644 index 000000000..6cf5b34a8 --- /dev/null +++ b/pts/benchmark-resources/doom3-demo/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/doom3/install.sh b/pts/benchmark-resources/doom3/install.sh new file mode 100755 index 000000000..e6bebfada --- /dev/null +++ b/pts/benchmark-resources/doom3/install.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +cd $1 + +if [ ! -f doom3-linux.run ] + then + wget ftp://ftp.idsoftware.com/idstuff/doom3/linux/doom3-linux-1.3.1.1304.x86.run -O doom3-linux.run +fi + +chmod +x doom3-linux.run + +./doom3-linux.run --noexec --target . +ln bin/Linux/x86/doom.x86 doom3-real + +echo "#!/bin/sh\n./doom3-real \$@ | grep fps" > doom3 +chmod +x doom3 + +echo "Doom 3 Game Files (*.pk4) Must Be Copied Into $1/base" +echo "Also Copy Your Game Key File To ~/.doom3/base/doomkey (If Not Already There)" + diff --git a/pts/benchmark-resources/doom3/parse-results.php b/pts/benchmark-resources/doom3/parse-results.php new file mode 100644 index 000000000..6cf5b34a8 --- /dev/null +++ b/pts/benchmark-resources/doom3/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/encode-flac/install.sh b/pts/benchmark-resources/encode-flac/install.sh new file mode 100644 index 000000000..445644e0f --- /dev/null +++ b/pts/benchmark-resources/encode-flac/install.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +cd $1 + +if [ ! -f flac.tar.gz ] + then + wget http://internap.dl.sourceforge.net/sourceforge/flac/flac-1.2.1.tar.gz -O flac.tar.gz +fi + +if [ ! -f ../pts-shared/pts-wav-sample-file.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/pts-wav-sample-file.tar.bz2 -O ../pts-shared/pts-wav-sample-file.tar.bz2 +fi + +tar -xvf flac.tar.gz +cd flac-1.2.1/ +./configure +make -j $NUM_CPU_JOBS +cd .. + +echo "#!/bin/sh\n/usr/bin/time -f \"WAV To FLAC Encode Time: %e Seconds\" ./flac-1.2.1/src/flac/flac -s --best audio.wav 2>&1 +rm -f audio.flac" > flac +chmod +x flac + +tar -jxvf ../pts-shared/pts-wav-sample-file.tar.bz2 + diff --git a/pts/benchmark-resources/encode-flac/parse-results.php b/pts/benchmark-resources/encode-flac/parse-results.php new file mode 100644 index 000000000..81eef1104 --- /dev/null +++ b/pts/benchmark-resources/encode-flac/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/encode-flac/post.sh b/pts/benchmark-resources/encode-flac/post.sh new file mode 100644 index 000000000..dd74f62bb --- /dev/null +++ b/pts/benchmark-resources/encode-flac/post.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd $1 +rm -f audio.wav +rm -f audio.flac diff --git a/pts/benchmark-resources/encode-flac/pre.sh b/pts/benchmark-resources/encode-flac/pre.sh new file mode 100644 index 000000000..8a9984a08 --- /dev/null +++ b/pts/benchmark-resources/encode-flac/pre.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +cd $1 +rm -f audio.wav +rm -f audio.flac +cp pts-wav-sample-file.wav audio.wav diff --git a/pts/benchmark-resources/encode-mp3/install.sh b/pts/benchmark-resources/encode-mp3/install.sh new file mode 100644 index 000000000..0fb8d3ae2 --- /dev/null +++ b/pts/benchmark-resources/encode-mp3/install.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +cd $1 + +if [ ! -f lame.tar.gz ] + then + wget http://superb-east.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz -O lame.tar.gz +fi + +if [ ! -f ../pts-shared/pts-wav-sample-file.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/pts-wav-sample-file.tar.bz2 -O ../pts-shared/pts-wav-sample-file.tar.bz2 +fi + +tar -xvf lame.tar.gz +cd lame-3.97/ +./configure +make -j $NUM_CPU_JOBS +cd .. + +echo "#!/bin/sh\n/usr/bin/time -f \"WAV To MP3 Encode Time: %e Seconds\" ./lame-3.97/frontend/lame --silent -h audio.wav audio.mp3 2>&1" > lame +chmod +x lame + +tar -jxvf ../pts-shared/pts-wav-sample-file.tar.bz2 + diff --git a/pts/benchmark-resources/encode-mp3/parse-results.php b/pts/benchmark-resources/encode-mp3/parse-results.php new file mode 100644 index 000000000..050b158f8 --- /dev/null +++ b/pts/benchmark-resources/encode-mp3/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/encode-mp3/post.sh b/pts/benchmark-resources/encode-mp3/post.sh new file mode 100644 index 000000000..328f787c2 --- /dev/null +++ b/pts/benchmark-resources/encode-mp3/post.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd $1 +rm -f audio.wav +rm -f audio.mp3 diff --git a/pts/benchmark-resources/encode-mp3/pre.sh b/pts/benchmark-resources/encode-mp3/pre.sh new file mode 100644 index 000000000..6697d3aac --- /dev/null +++ b/pts/benchmark-resources/encode-mp3/pre.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +cd $1 +rm -f audio.wav +rm -f audio.mp3 +cp pts-wav-sample-file.wav audio.wav diff --git a/pts/benchmark-resources/encode-ogg/install.sh b/pts/benchmark-resources/encode-ogg/install.sh new file mode 100644 index 000000000..7e8bb8c8d --- /dev/null +++ b/pts/benchmark-resources/encode-ogg/install.sh @@ -0,0 +1,53 @@ +#!/bin/sh + +cd $1 + +if [ ! -f libogg.tar.gz ] + then + wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz -O libogg.tar.gz +fi + +if [ ! -f libvorbis.tar.gz ] + then + wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.gz -O libvorbis.tar.gz +fi + +if [ ! -f vorbis-tools.tar.gz ] + then + wget http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.2.0.tar.gz -O vorbis-tools.tar.gz +fi + +if [ ! -f ../pts-shared/pts-wav-sample-file.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/pts-wav-sample-file.tar.bz2 -O ../pts-shared/pts-wav-sample-file.tar.bz2 +fi + +THIS_DIR=$(pwd) +mkdir $THIS_DIR/vorbis + +tar -xvf libogg.tar.gz +tar -xvf libvorbis.tar.gz +tar -xvf vorbis-tools.tar.gz + +cd libogg-1.1.3/ +./configure --prefix=$THIS_DIR/vorbis +make -j $NUM_CPU_JOBS +make install +cd .. + +cd libvorbis-1.2.0/ +./configure --prefix=$THIS_DIR/vorbis +make -j $NUM_CPU_JOBS +make install +cd .. + +cd vorbis-tools-1.2.0/ +./configure --prefix=$THIS_DIR/vorbis +make -j $NUM_CPU_JOBS +make install +cd .. + +echo "#!/bin/sh\n/usr/bin/time -f \"WAV To OGG Encode Time: %e Seconds\" ./vorbis/bin/oggenc --quiet audio.wav -q 10 -o audio.ogg 2>&1" > oggenc +chmod +x oggenc + +tar -jxvf ../pts-shared/pts-wav-sample-file.tar.bz2 diff --git a/pts/benchmark-resources/encode-ogg/parse-results.php b/pts/benchmark-resources/encode-ogg/parse-results.php new file mode 100644 index 000000000..e090ce756 --- /dev/null +++ b/pts/benchmark-resources/encode-ogg/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/encode-ogg/post.sh b/pts/benchmark-resources/encode-ogg/post.sh new file mode 100644 index 000000000..d6ce716d4 --- /dev/null +++ b/pts/benchmark-resources/encode-ogg/post.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +cd $1 +rm -f audio.wav +rm -f audio.ogg diff --git a/pts/benchmark-resources/encode-ogg/pre.sh b/pts/benchmark-resources/encode-ogg/pre.sh new file mode 100644 index 000000000..5ae5f0520 --- /dev/null +++ b/pts/benchmark-resources/encode-ogg/pre.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +cd $1 +rm -f audio.wav +rm -f audio.ogg +cp pts-wav-sample-file.wav audio.wav diff --git a/pts/benchmark-resources/etqw-demo/install.sh b/pts/benchmark-resources/etqw-demo/install.sh new file mode 100755 index 000000000..62e1a325b --- /dev/null +++ b/pts/benchmark-resources/etqw-demo/install.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +cd $1 + +if [ ! -f ETQW-demo2-client-full.r1.x86.run ] + then + wget ftp://ftp.idsoftware.com/idstuff/etqw/ETQW-demo2-client-full.r1.x86.run -O ETQW-demo2-client-full.r1.x86.run +fi +if [ ! -f etqw-demo-demo.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/etqw-demo-demo-1.tar.bz2 -O etqw-demo-demo.tar.bz2 +fi + +unzip -o ETQW-demo2-client-full.r1.x86.run + +echo "#!/bin/sh\ncd data/\n./etqw.x86 \$@ | grep fps" > etqw +chmod +x etqw + +tar -jxvf etqw-demo-demo.tar.bz2 +mkdir data/base/demos +mv -f pts.ndm data/base/demos/pts.ndm diff --git a/pts/benchmark-resources/etqw-demo/parse-results.php b/pts/benchmark-resources/etqw-demo/parse-results.php new file mode 100644 index 000000000..6cf5b34a8 --- /dev/null +++ b/pts/benchmark-resources/etqw-demo/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/etqw/install.sh b/pts/benchmark-resources/etqw/install.sh new file mode 100755 index 000000000..4672f4ee4 --- /dev/null +++ b/pts/benchmark-resources/etqw/install.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +cd $1 + +if [ ! -f etqw-linux.run ] + then + wget ftp://ftp.idsoftware.com/idstuff/etqw/ETQW-client-1.4-full.x86.run -O etqw-linux.run +fi + +chmod +x etqw-linux.run + +unzip -o etqw-linux.run +ln data/etqw.x86 etqw-real + +echo "#!/bin/sh\n./etqw-real \$@ | grep fps" > etqw +chmod +x etqw + +if [ ! -f etqw-demo.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/etqw-demo-1.tar.bz2 -O etqw-demo.tar.bz2 +fi +tar -jxvf etqw-demo.tar.bz2 +mkdir data/base/demos +mv -f pts.ndm data/base/demos/pts.ndm + +echo "ET:QW Game Files (*.pk4) Must Be Copied Into $1/base" + diff --git a/pts/benchmark-resources/etqw/parse-results.php b/pts/benchmark-resources/etqw/parse-results.php new file mode 100644 index 000000000..6cf5b34a8 --- /dev/null +++ b/pts/benchmark-resources/etqw/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/fgl-glxgears/parse-results.php b/pts/benchmark-resources/fgl-glxgears/parse-results.php new file mode 100644 index 000000000..2811bd8de --- /dev/null +++ b/pts/benchmark-resources/fgl-glxgears/parse-results.php @@ -0,0 +1,6 @@ + diff --git a/pts/benchmark-resources/hdparm-read/install.sh b/pts/benchmark-resources/hdparm-read/install.sh new file mode 100755 index 000000000..c919fce93 --- /dev/null +++ b/pts/benchmark-resources/hdparm-read/install.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +cd $1 + +echo "#!/bin/sh\necho \"Root permission needed to run hdparm benchmark.\"\ngksudo -w hdparm \$@" > hdparm-su +chmod +x hdparm-su + diff --git a/pts/benchmark-resources/hdparm-read/parse-results.php b/pts/benchmark-resources/hdparm-read/parse-results.php new file mode 100644 index 000000000..099c8bab5 --- /dev/null +++ b/pts/benchmark-resources/hdparm-read/parse-results.php @@ -0,0 +1,6 @@ + diff --git a/pts/benchmark-resources/nexuiz/benchmark.cfg b/pts/benchmark-resources/nexuiz/benchmark.cfg new file mode 100644 index 000000000..bd4206cf2 --- /dev/null +++ b/pts/benchmark-resources/nexuiz/benchmark.cfg @@ -0,0 +1,114 @@ +seta _alientrap_net_banlist "" +seta bot_prefix "[BOT]" +seta bot_suffix "" +seta bot_usemodelnames "0" +seta cl_autoswitch "1" +seta cl_hidewaypoints "0" +seta cl_nogibs "0" +seta cl_playerdetailreduction "0" +seta cl_shownames "1" +seta cl_zoomfactor "5" +seta cl_zoomspeed "3.5" +seta fraglimit_override "-1" +seta g_balance_cloaked_alpha "0.25" +seta g_balance_teams "0" +seta g_balance_teams_complain "0" +seta g_balance_teams_force "0" +seta g_balance_teams_prevent_imbalance "0" +seta g_campaign_index "0" +seta g_campaign_name "" +seta g_ctf_capture_limit "-1" +seta g_domination_point_limit "-1" +seta g_friendlyfire "0.0" +seta g_grappling_hook "0" +seta g_keyhunt_point_limit "-1" +seta g_maplist "aggressor aneurysm basement basementctf bleach bloodprison bluesky darkzone dieselpower dismal downer evilspace farewell final_rage reslimed ruiner runningman runningman_1on1remix runningmanctf silvercity skyway slimepit soylent starship stormkeep strength toxic warfare" +seta g_maplist_index "0" +seta g_maplist_mostrecent_count "3" +seta g_maplist_selectrandom "0" +seta g_maplist_shuffle "1" +seta g_maplist_votable "5" +seta g_maplist_votable_abstain "0" +seta g_maplist_votable_keeptwotime "15" +seta g_maplist_votable_nodetail "0" +seta g_maplist_votable_suggestions "2" +seta g_maplist_votable_suggestions_override_mostrecent "0" +seta g_maplist_votable_timeout "30" +seta g_mirrordamage "0.2" +seta g_runematch_point_limit "-1" +seta g_tdm_teams "2" +seta menu_maxplayers "8" +seta menu_skin "" +seta menu_slist_showempty "1" +seta menu_slist_showfull "1" +seta skill_auto "0" +seta sv_defaultcharacter "0" +seta sv_defaultplayercolors "" +seta sv_defaultplayermodel "models/player/nexus.zym" +seta sv_defaultplayermodel_blue "" +seta sv_defaultplayermodel_pink "" +seta sv_defaultplayermodel_red "" +seta sv_defaultplayermodel_yellow "" +seta sv_defaultplayerskin "0" +seta sv_defaultplayerskin_blue "0" +seta sv_defaultplayerskin_pink "0" +seta sv_defaultplayerskin_red "0" +seta sv_defaultplayerskin_yellow "0" +seta sv_eventlog_files_counter "0" +seta sv_precacheitems "0" +seta sv_precacheplayermodels "1" +seta sv_precacheweapons "0" +seta sv_servermodelsonly "1" +seta sv_spectate "1" +seta teamplay_default "4" +seta timelimit_maxovertime "5" +seta timelimit_override "-1" +seta userbind10_description "" +seta userbind10_press "" +seta userbind10_release "" +seta userbind11_description "" +seta userbind11_press "" +seta userbind11_release "" +seta userbind12_description "" +seta userbind12_press "" +seta userbind12_release "" +seta userbind13_description "" +seta userbind13_press "" +seta userbind13_release "" +seta userbind14_description "" +seta userbind14_press "" +seta userbind14_release "" +seta userbind15_description "" +seta userbind15_press "" +seta userbind15_release "" +seta userbind16_description "" +seta userbind16_press "" +seta userbind16_release "" +seta userbind1_description "" +seta userbind1_press "" +seta userbind1_release "" +seta userbind2_description "" +seta userbind2_press "" +seta userbind2_release "" +seta userbind3_description "" +seta userbind3_press "" +seta userbind3_release "" +seta userbind4_description "" +seta userbind4_press "" +seta userbind4_release "" +seta userbind5_description "" +seta userbind5_press "" +seta userbind5_release "" +seta userbind6_description "" +seta userbind6_press "" +seta userbind6_release "" +seta userbind7_description "" +seta userbind7_press "" +seta userbind7_release "" +seta userbind8_description "" +seta userbind8_press "" +seta userbind8_release "" +seta userbind9_description "" +seta userbind9_press "" +seta userbind9_release "" +seta vid_x11_display "" diff --git a/pts/benchmark-resources/nexuiz/install.sh b/pts/benchmark-resources/nexuiz/install.sh new file mode 100755 index 000000000..74b150803 --- /dev/null +++ b/pts/benchmark-resources/nexuiz/install.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +cd $1 + +if [ ! -f nexuiz-24.zip ] + then + wget http://internap.dl.sourceforge.net/sourceforge/nexuiz/nexuiz-24.zip -O nexuiz-24.zip +fi + +unzip -o nexuiz-24.zip + +echo "#!/bin/sh\ncd Nexuiz\n./nexuiz-linux-glx.sh +exec normal.cfg \$@ | grep fps" > nexuiz +chmod +x nexuiz + diff --git a/pts/benchmark-resources/nexuiz/parse-results.php b/pts/benchmark-resources/nexuiz/parse-results.php new file mode 100644 index 000000000..c7e1a6c3f --- /dev/null +++ b/pts/benchmark-resources/nexuiz/parse-results.php @@ -0,0 +1,7 @@ + diff --git a/pts/benchmark-resources/quake4/install.sh b/pts/benchmark-resources/quake4/install.sh new file mode 100755 index 000000000..7e52c9257 --- /dev/null +++ b/pts/benchmark-resources/quake4/install.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +cd $1 + +if [ ! -f quake4-linux.run ] + then + wget ftp://ftp.idsoftware.com/idstuff/quake4/linux/quake4-linux-1.4.2.x86.run -O quake4-linux.run +fi +if [ ! -f quake4-demo.tar.bz2 ] + then + wget http://www.phoronix-test-suite.com/benchmark-files/quake4-demo-1.tar.bz2 -O quake4-demo.tar.bz2 +fi + +chmod +x quake4-linux.run + +./quake4-linux.run --noexec --target . +ln bin/Linux/x86/quake4.x86 quake4-real +chmod +x quake4-real + +echo "#!/bin/sh\n./quake4-real \$@ | grep fps" > quake4 +chmod +x quake4 + +tar -jxvf quake4-demo.tar.bz2 +mkdir q4base/demos +mv -f pts.demo q4base/demos/pts.demo + +echo "Quake 4 Game Files (*.pk4) Must Be Copied Into $1/q4base" +echo "Also Copy Your Game Key File To ~/.quake4/q4base/quake4key (If Not Already There)" diff --git a/pts/benchmark-resources/quake4/parse-results.php b/pts/benchmark-resources/quake4/parse-results.php new file mode 100644 index 000000000..6cf5b34a8 --- /dev/null +++ b/pts/benchmark-resources/quake4/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-resources/ramspeed/install.sh b/pts/benchmark-resources/ramspeed/install.sh new file mode 100644 index 000000000..bf3c9c88b --- /dev/null +++ b/pts/benchmark-resources/ramspeed/install.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +cd $1 + +if [ ! -f ramspeed.tar.gz ] + then + wget http://www.alasir.com/software/ramspeed/ramspeed-2.5.1.tar.gz -O ramspeed.tar.gz +fi + +tar -xvf ramspeed.tar.gz +cd ramspeed-2.5.1/ +cat build.sh | grep -v 'read ANS' > build_pts.sh +chmod +x build_pts.sh +./build_pts.sh +ln ramspeed ../ + diff --git a/pts/benchmark-resources/ramspeed/parse-results.php b/pts/benchmark-resources/ramspeed/parse-results.php new file mode 100644 index 000000000..3bb27b655 --- /dev/null +++ b/pts/benchmark-resources/ramspeed/parse-results.php @@ -0,0 +1,5 @@ + diff --git a/pts/benchmark-suites/audio-encoding.xml b/pts/benchmark-suites/audio-encoding.xml new file mode 100644 index 000000000..fe0c8cff6 --- /dev/null +++ b/pts/benchmark-suites/audio-encoding.xml @@ -0,0 +1,25 @@ + + + 0.1 + System + Audio Encoding Test Suite + Michael Larabel + This test suite consists of benchmarks that measure the amount of time needed to encode a sample WAV file to various audio formats. Among the formats are MP3, Ogg, and FLAC. This suite is good for testing the system's processor, memory, and overall system performance. + 0 + + + encode-mp3 + + time lame -h audio.wav audio.mp3 (45.0MB) + + + encode-ogg + + time oggenc audio.wav -q 10 -o audio.ogg (45.0MB) + + + encode-flac + + time flac --best audio.wav (45.0MB) + + diff --git a/pts/benchmark-suites/compilation.xml b/pts/benchmark-suites/compilation.xml new file mode 100644 index 000000000..f0ff67f26 --- /dev/null +++ b/pts/benchmark-suites/compilation.xml @@ -0,0 +1,25 @@ + + + 0.1 + Processor + Timed Code Compilation Tests + Michael Larabel + This test suite consists of benchmarks that measure the amount of time needed to build common open-source software packages. These benchmarks will use your default compiler (likely GCC) and will adjust the number of compiling jobs based upon the number of detected CPU cores in your system. This suite is good for testing the system's processor, memory, and overall system performance. + 0 + + + build-mplayer + + Time To Compile + + + build-php + + Time To Compile + + + build-imagemagick + + Time To Compile + + diff --git a/pts/benchmark-suites/gaming.xml b/pts/benchmark-suites/gaming.xml new file mode 100644 index 000000000..655a485b5 --- /dev/null +++ b/pts/benchmark-suites/gaming.xml @@ -0,0 +1,25 @@ + + + 0.1 + Graphics + Phoronix Test Suite For Gaming + Michael Larabel + This test suite consists of benchmarks designed to test your graphics card and display driver. + 1 + + + nexuiz + +vid_width 1024 +vid_height 768 + 1024 x 768 + + + doom3 + +set r_customWidth 1280 +set r_customHeight 1024 +set com_machineSpec 2 + 1280 x 1024 - High Quality + + + quake4 + +set r_customWidth 1280 +set r_customHeight 1024 +set com_machineSpec 0 + 1280 x 1024 - Low Quality + + diff --git a/pts/benchmark-suites/graphics.xml b/pts/benchmark-suites/graphics.xml new file mode 100644 index 000000000..2625ffe1b --- /dev/null +++ b/pts/benchmark-suites/graphics.xml @@ -0,0 +1,19 @@ + + + 0.1 + Graphics + Phoronix Test Suite For Graphics + Michael Larabel + This test suite consists of benchmarks designed to test your graphics card and display driver. + 1 + + + nexuiz + +vid_width 1024 +vid_height 768 + 1024 x 768 + + + doom3 + +set r_customWidth 1024 +set r_customHeight 768 +set com_machineSpec 2 + + diff --git a/pts/benchmark-suites/motherboard.xml b/pts/benchmark-suites/motherboard.xml new file mode 100644 index 000000000..8eaa2a9c8 --- /dev/null +++ b/pts/benchmark-suites/motherboard.xml @@ -0,0 +1,22 @@ + + + 0.1 + Motherboard + Motherboard Tests + Michael Larabel + This test suite consists of benchmarks designed to test your motherboard. + 1 + + + lame-mp3 + + + + ogg-encode + + + + ramspeed + -b 3 -l 2 + + diff --git a/pts/benchmark-suites/recursion-test.xml b/pts/benchmark-suites/recursion-test.xml new file mode 100644 index 000000000..b83ea8aa4 --- /dev/null +++ b/pts/benchmark-suites/recursion-test.xml @@ -0,0 +1,15 @@ + + + 0.1 + System + Recursion Test Of Audio Encoding + Michael Larabel + Recursion Test For Phoronix Test Suite... Should Produce Identical Design To Audio Encoding suite when running recursion-test. + 0 + + + audio-encoding + + Running The Audio Encoding Suite in PTS. + + diff --git a/pts/benchmark-suites/universe.xml b/pts/benchmark-suites/universe.xml new file mode 100644 index 000000000..4624f95a6 --- /dev/null +++ b/pts/benchmark-suites/universe.xml @@ -0,0 +1,50 @@ + + + 0.1 + System + Universe Test Suite + Michael Larabel + The Universe Phoronix Test Suite contains all benchmark profiles that are known to be in a working and good overall state. Among the profiles are encoding, compilation, graphics, and other system tests. The Universe test suite may take many minutes to complete. + 0 + + + encode-mp3 + + time lame -h audio.wav audio.mp3 (45.0MB) + + + encode-ogg + + time oggenc audio.wav -q 10 -o audio.ogg (45.0MB) + + + encode-flac + + time flac --best audio.wav (45.0MB) + + + build-mplayer + + Time To Compile + + + build-php + + Time To Compile + + + build-imagemagick + + Time To Compile + + + nexuiz + +vid_width 1024 +vid_height 768 + 1024 x 768 + + + compress-gzip + + + + diff --git a/user-config.xml b/user-config.xml new file mode 100644 index 000000000..0fb6e9683 --- /dev/null +++ b/user-config.xml @@ -0,0 +1,18 @@ + + + + Default User + + FALSE + + + + FALSE + + + ~/pts-benchmark-env/ + test-results/ + 5 + + +