Der BOINC-Entwicklungsfred

Crashtest

Redaktion
☆☆☆☆☆☆
Mitglied seit
11.11.2008
Beiträge
9.274
Renomée
1.406
Standort
Leipzig
  • Docking@Home
  • BOINC Pentathlon 2011
  • BOINC Pentathlon 2012
  • BOINC Pentathlon 2013
  • BOINC Pentathlon 2014
  • BOINC Pentathlon 2015
  • BOINC Pentathlon 2016
  • BOINC Pentathlon 2017
  • BOINC Pentathlon 2018
  • BOINC Pentathlon 2019
  • BOINC Pentathlon 2020
  • THOR Challenge 2020
  • BOINC Pentathlon 2021
  • BOINC Pentathlon 2022
  • BOINC Pentathlon 2023
Dies ist/wird ein reiner BOINC-Entwicklungsfred über die laufende Entwicklung in BOINC

Boinc 6.12.26 ist freigegeben - siehe unten




6.10.36:
Berkeley hat BOINC 6.10.36 freigegeben !

Aber
- ist noch Buggy im Bezug auf Task-Scheduler - wechselt Tasks ohne Grund
- Verbindungsabrüche zw BOINC und BOINCMGR


was neu im 6.10.36 ist und von uns kommt:

Windows:
- Erkennung von 3Dnow, SSE-SSE4.2, AVX, FMA usw über cpuid
- Erkennung von Vista / Win7 "N" Editionen

was im 6.10.36 fehlt, aber schon im Source ist und von uns kommt:

Windows:
- Erkennung von XP Media Center, XP Tablet PC, XP Starter
- Erkennung von Win7 Professional
- Erkennung von Vista / Win7 "E" Editionen
- Erkennung von Server 2008 / r2 Storage / SBS
- Erkennung von Server 2003 Compute Cluster / Storage

was gerade in Arbeit ist:

Windows:
- Erkennung von XP Embedded, WePOS, WinFLP
- Erkennung weiter CPU Features - auch VIA
 
Zuletzt bearbeitet:
Was bringt uns das zu wissen, ob Boinc Windows XP oder XP Media Center erkennt ???
 
Boinc unterscheiedet doch auch Vista Home Basic von Home Premium - also darf es doch auch MCE von Prof unterscheiden ... dass evtl die Embedded Varianten evtl etwas viel sein könnte kannsch verstehen ;)

2D warum meckerst du eigentlich - du bist raus aus Boinc und rein in RL *lol*


Es gibt ja noch andere Baustellen:

- Infos: Cache zb 8x512KB L2 statt 512KB; 6MB L3
- Scheduler: viele Bugs
- OpenCL
- Backupprojekt
- Setup auf DC
....
 
Backupprojekt ist doch schon eingebaut. Muss nur Projektseitig unterstützt werden(Ressource share 0)
 
Backupprojekt ist doch schon eingebaut. Muss nur Projektseitig unterstützt werden(Ressource share 0)

Eingebaut ist es seit 28. Januar ... aber es geht noch nicht so richtig - buggy - halt ne Baustelle

Es sind ja schon ganz andere Dinge eingebaut - etwa die Auslagerung des Eventlog ins Menü ....
 
Zuletzt bearbeitet:
Es ist nicht einfach :

- über die Boinc Server Software Version größer "20700"
- über Anfrage ans Projekt


Bisher soll nur Seti@Home dazu in der Lage sein aber sicher ist es auch noch nicht
 
So - 6.10.37 is da:

Danke an cologne46 für die Info

http://boinc.berkeley.edu/dl/boinc_6.10.37_windows_intelx86.exe
http://boinc.berkeley.edu/dl/boinc_6.10.37_windows_x86_64.exe


und damit passts endlich mit XP MCE ;D

Ich habs mir aber bisher verkniffen, die entsprechenden MCE Versionen mit in die Erkennung einzubauen (2002, 2004, 2005) *lol*

ok hab aber leider auch schon ein Bug gefunden:

XP Starter wird als XP Home erkannt - naja bei der derzeitigen Erkennung auch kein Wunder - naja habs Romw gemailt ....

http://boinc.berkeley.edu/svn/trunk/boinc/client/hostinfo_win.cpp

Code:
                    } else if( (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 1) ) {
 [COLOR="Red"]
                       if( osvi.wSuiteMask & VER_SUITE_PERSONAL ) {
                            strcat(szSKU, "Home ");
[/COLOR]
                        } else if( GetSystemMetrics(SM_TABLETPC) ) {
                            strcat(szSKU, "Tablet PC ");
                        } else if( GetSystemMetrics(SM_MEDIACENTER) ) {
                            strcat(szSKU, "Media Center ");
[COLOR="red"]
                        } else if( GetSystemMetrics(SM_STARTER) ) {
                            strcat(szSKU, "Starter ");
[/COLOR]
                        } else {
                            strcat(szSKU, "Professional ");
                        }

tja XP Starter ist ein VER_SUITE_PERSONAL mit SM_STARTER gesetzt - also sollte zu erst Starter danach Home ....


und hier noch der "Changelog" ausm SVN:
Code:
Rom    1 Mar 2010
    - client: Improve error checking with CPU detection features.
    - lib: cleanup some warnings.
    
    client/
        hostinfo_win.cpp
    lib/
        str_util.h

David  1 Mar 2010
	- client: if suspending apps because of CPU benchmarks,
		leave them in memory

	client/
		app.h
		app_control.cpp
		cs_prefs.cpp

Charlie  2 Mar 2010
    - MGR: Fix more Event Log bugs: Exit from taskbar closes Event Log just 
        like exit from regular menu; enable and disable Copy Selected and Filter 
        buttons depending on selected messages; fix misplaced curly bracket in 
        CMainDocument::RunPeriodicRPCs() which caused excessive CPU usage and 
        other problems.
    
    clientgui/
        AdvancedFrame.cpp
        BOINCBaseFrame.cpp
        BOINCTaskBar.cpp
        DlgEventLog.cpp, .h
        MainDocument.cpp

Charlie  2 Mar 2010
    - MGR: Keep getting messages even if the Event Log is not open; otherwise 
        some may be lost due to the limited size of the client's buffer,
        causing gaps when the Event Log is later opened.
        
    clientgui/
        MainDocument.cpp

Rom    2 Mar 2010
    - client: Add missing European SKUs to the host detection code.
        (from: [B]Robert Kreß[/B])
        
    client/
        hostinfo_win.cpp

David  2 Mar 2010
    - API: Win: resume other threads before exiting from timer thread.
        Attempt to fix E@h bug.
    - client: fix messages: asking for X instances doesn't mean
        that X instances are idle

    api/
        boinc_api.cpp
    client/
        scheduler_op.cpp

David  2 Mar 2010
    - add remote job submission system (from Toni Giorgino)

    rboinc/*

David  2 Mar 2010
	- client: generalize the GUI RPC mechanism to access via HTTP.
		The handler checks for POST headers,
		and if present adds a reply header.
		Also: remove the restriction that request messages
		must be read in their entirety on the first recv().

		I'm testing this using javascript's XMLHttpRequest.
		It's not completely working;
		the browser sends an OPTIONS request, then sends a POST.
		The BOINC client parses and replies to these,
		but for some reason the browser doesn't seem to be
		parsing the POST reply.

	client/
		gui_rpc_server.cpp,h
		gui_rpc_server_ops.cpp

Charlie  2 Mar 2010
    - MGR: Save & restore size information of properties dialogs separately 
        for project and task property dialogs, also save and restore dialog 
        positions on Mac.
        
    clientgui/
        DlgItemProperties.cpp, .h

Rom    3 Mar 2010
    - MGR: Use theme colors when setting up the color scheme for list items.
        The previous use of gray just happened to be the same color as the
        deselected but highlighted list item which caused the 'gray'
        backgrounded items to display a white background after Windows
        inverted the color for highlighting. By using theme colors we avoid
        having to worry about such things.
        
    clientgui/
        BOINCBaseView.cpp
        DlgEventLog.cpp

David  3 Mar 2010
    - scheduler: code cleanup: goto considered harmful
    - scheduler: when calculate scheduler runtime,
        don't include the part reading request msg from client.
        That can be misleadingly long

    sched/
        sched_array.cpp
        handle_request.cpp
        sched_resend.cpp

Rom    3 Mar 2010
    - client: more Windows SKU detection changes
        (from: [B][P3D] Crashtest[/B])

    client/
        hostinfo_win.cpp

David  3 Mar 2010
    - scheduler: cuda_fermi class needs CUDA version 3.0+
    - boinccmd: "result" -> "task"

    sched/
        sched_customize.cpp
    lib/
        gui_rpc_client_print.cpp
    client/
        boinc_cmd.cpp

David  3 Mar 2010
    - update_versions: if file is already in download dir,
        and is the same, don't copy (it might not be writeable)
    - client: change "result" to "task" in user-visible messages

    py/Boinc/tools.py
    client/
        client_state.cpp
        cs_scheduler.cpp

David  3 Mar 2010
    - web: fix bug that caused "send email" and "show hosts"
        in project prefs to always select "no"

    html/inc/
        prefs.inc

Charlie  4 Mar 2010
    - MGR: Instead of alternating gray and white backgrounds in lists, 
        create CBOINCListCtrl and CDlgEventLogListCtrl with wxLC_HRULES 
        flag.  This avoids theme color conflicts with our backgrounds.  
        It also eliminates the need to set item attributes in the views, 
        since the default attribute setting already uses theme colors. 
        (We still use item attributes in the Event Log to list 
        error messages in red text.)

    clientgui/
        BOINCBaseView.cpp,.h
        BOINCListCtrl.cpp, .h
        DlgEventLog.cpp

Charlie  4 Mar 2010
    - MGR: in Event Log: enable and disable Copy Selected and Filter buttons 
        immediately when selecting or deselecting items; fix Mac-only bug 
        drawing selected items when Event Log window is inactive.

    clientgui/
        DlgEventLog.cpp, .h
        DlgEventLogListCtrl.cpp, .h

Rom    4 Mar 2010
    - MGR: Remove some hacks to deal with early wxGTK bugs which have since
        been fixed.

    clientgui/
        AdvancedFrame.cpp
        Events.h

Rom    4 Mar 2010
    - MGR: Restore wxGTK hacks, bug is still alive and well.

    clientgui/
        AdvancedFrame.cpp
        Events.h

David  4 Mar 2010
    - client: don't start new network activity if CPU benchmarks in progress

    client/
        client_state.cpp

Charlie  4 Mar 2010
    - MGR: Allow compile-time choice of either rules or alternating gray and white 
        background stripes in lists by defining EVENT_LOG_STRIPES (in DlgEventLog.h) 
        and BASEVIEW_STRIPES (in BOINCBaseView.h) to 0 for rules or 1 for stripes.

    clientgui/
        BOINCBaseView.cpp,.h
        BOINCListCtrl.cpp, .h
        DlgEventLog.cpp, .h
        DlgEventLogListCtrl.h

Bernd 5 Mar 2010
    include sys/types.h for gid_t

    lib/
        filesys.h

Bernd 5 Mar 2010
    for now maintain (install, uninstall) header files in both BOINC/ and boinc/
    (BOINC/ kept for compatibility, shall be dropped at some point later)

    lib/
        Makefile.mingw

Bernd 5 Mar 2010
    fix to compile boinc_api.cpp on Windows
    looks like copy/paste error, retval is not defined there
    David, please review & change if necessary

    api/
        boinc_api.cpp

David  5 Mar 2010
    - client: revisit the domino-effect preemption problem.
        Removed my changes of 19 Jan 2010, which didn't work.
        Added new mechanism: keep track of whether a job J has ever run in EDF.
        If so, and if another job of the same project and resource type as J
        is marked as deadline miss, then mark J as deadline miss,
        so that it won't get preempted.
    - web: change "result" to "task" in server status page
    - admin web: show server stable SVN revision, not trunk

    html/ops/
        index.php
        sample_server_status.php
    client/
        client_types.h
        app.cpp,h
        cpu_sched.cpp

David  5 Mar 2010
    - server: major improvements to locality scheduling from Einstein@home.
        Triggering the work generator is now done via the DB
        instead of flat files.

        Since only E@h uses locality scheduling,
        I kept the DB changes in a separate file (db/schema_locality.sql).
        There's a new field in the workunit table,
        and that's a required update (in db_update.php)
    - manager: compile fix

    clientgui/
        DlgEventLog.h
    db/
        boinc_db.cpp,h
        schema.sql
        schema_locality.sql
    sched/
        sched_locality.cpp
        Makefile.am
    html/ops
        db_update.php
    lib/
        Makefile.am

David  6 Mar 2010
    - web RPC: generalize team lookup so that you can look up multiple
        teams in one RPC.  From Willy de Zutter.

    html/user/
        team_lookup.php

David  8 Mar 2010
    - server credit stuff (partial checkin)

    db/
        boinc_db.h
        schema.sql
    sched/
        credit_test.cpp
    lib/
        average.cpp,h
        Makefile.am

David  9 Mar 2010
    - server credit stuff.
        New policy: anon platform and old platform jobs
        get average credit, possibly scaled by elapsed time.
        We no longer attempt to guess what app version produced them.

    db/
        boinc_db.h
        schema.sql
    sched/
        credit_test.cpp
    lib/
        average.cpp,h

David  9 Mar 2010
    - client: if a GPU job is blocked on available mem,
        don't fetch more jobs for that resource type

    db/
        boinc_db.h
    sched/
        credit_test.cpp
    client/
        client_types.cpp,h
        work_fetch.cpp
        cpu_sched.cpp

David  10 Mar 2010
    - client: don't suspend non-CPU-intensive jobs because of CPU load

    lib/
        common_defs.h
    client/
        gui_rpc_server_ops.cpp
        cs_prefs.cpp
        time_stats.cpp
        app_control.cpp

Charlie  10 Mar 2010
    - MGR: Improve performance when reducing number of rows in lists (as  
        when selecting "Show active tasks") by calling ClearSelections() 
        and SetItemCount() instead of repeatedly calling DeleteItem().
        
    clientgui/
        BOINCBaseView.cpp

David  10 Mar 2010
    - credit test program: create a data file separately so you
        don't have to do a big DB query each time

    sched/
        credit_test.cpp
    html/ops/
        credit_test.php

Charlie  11 Mar 2010
    - MGR: Fix a bug which caused unnecessary demand RPCs on some platforms: 
        set RPC time stamps to 1 rather than 0 in RefreshRPCs() so a not to 
        trigger initialization code.
        
    clientgui/
        MainDocument.cpp

Rom    11 Mar 2010
    - MGR: Prevent flicker and lack of display by using the regular tooltip
        for the Project List control on Windows.
        
    clientgui/
        ProjectListCtrl.cpp, .h

David  11 Mar 2010
    - credit test program:
        It's working pretty well; for S@h, new credit is 56% of old credit,
        whether or not we include small-credit jobs.
    - improve AVERAGE class (from John McLeod)
    sched/
        credit_test.cpp
    lib/
        average.cpp,h

was noch fehlt aber schon in "Prüfung" ist:

die noch fehlenden 7 anderen XP SKUs
die noch fehlenden 23 anderen Server 2003 SKUs
die noch fehlenden 2 anderen Vista SKUs
die noch fehlenden 13 anderen Server 2008 SKUs
die noch fehlende Win7 SKU
die noch fehlenden 18 anderen Server 2008 R2 SKUs + ggf weitere aus der SBS Serie sowie der HPC-Reihe
Win8 PreSupport

VIA CPU Features wie AES, RNG, MMPE, AIS ....
 
Zuletzt bearbeitet:
So nach einigen "stillen" Wochen gibts endlich wieder etwas Wichtiges bei Boinc:

Der OpenCL Support kommt - leider derzeit geteilt nach ATI und nVIDIA

David 12 May 2010
- client: make GPU available RAM measurement #ifdef-selectable,
and default it to off
- client: if we print available GPU RAM (which we now don't)
have a separate timer per GPU type
- scheduler: add new plan classes cuda_opencl (sic) and ati_opencl


Die Ursache für die verschiedenen OpenCLs-Klassen liegt in den momentan auftretenden Problemem bei Windowssystemem mit der opencl.dll

ATI bringt diese bisher nur im Stream SDK 2.x mit
nVIDIA installiert diese als Teil des Forceware Treibers ins \System32 (+ \Syswow64) Verzeichnis

Eigentlich sollten beide opencl.dlls - ATI und nVIDIA identisch sein und von der Khronos Gruppe stammen und genau wie OpenGL einen ICD (Installable Client Driver) verwenden:
bei ATI ist es atiocl.dll (32) und atiocl64.dll (64Bit)
bei nVIDIA ist es nvcuda.dll (jeweils bei 32 und 64Bit)

Registriert werden die ICDs in der Registry in

\SOFTWARE\Khronos\OpenCL\Vendors sowie bei 64Bit Systemen auch noch im Wow64 Bereich \SOFTWARE\Wow6432Node\Khronos\OpenCL\Vendors

darin sind sofern installiert DWORD-Einträge vorhanden zB nvcuda.dll = 0 oder atiocl.dll = 0

Vergleichbar mit den OpenGL ICDs - am Bspl Windows NT bis 2003:

\SOFTWARE\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\ und darin zB ein Schlüssel ati2dvag oder RIVATNT

aber leider sind diese Dateien derzeit verschieden und kommt zu Problemen - daher wirds derzeit nach ATI und nVIDIA geteilt - war aber nicht das Ziel von OpenCL 8-(


Es gibt auch schon OpenCL Testapps - zb von AQUA@Home - aber noch nicht offen zugängig


Was sonst noch passierte:
- Fehlerbehebung bei nVIDIA Fermi GPUs
- Schedulerbearbeitung - aber leider noch nicht erfolgreich, da der Scheduler immernoch in Mitten der Arbeit die WUs wechselt ...
- Arbeiten am MacOSX 10.6 Support
- Arbeiten am neuen Credit-System
- Team Name jetzt im Setup möglich
- Arbeiten am neuen Eventlog (ins Menü verbandt)
- uvm

Viele Neuerungen sind (schon) im Source ( http://boinc.berkeley.edu/svn/trunk ) aber noch nicht in die fertigen Downloads gelangt ...


Die aktuelle Downloadversion ist 6.10.56:
 
Zuletzt bearbeitet:
Berkeley hat Boinc 6.10.56 freigegeben

Links:
Win32 - http://boinc.berkeley.edu/dl/boinc_6.10.56_windows_intelx86.exe
Win64 - http://boinc.berkeley.edu/dl/boinc_6.10.56_windows_x86_64.exe
WCG32 - http://boinc.berkeley.edu/dl/wcg_boinc_6.10.56_windows_intelx86.exe
Linux 32 - http://boinc.berkeley.edu/dl/boinc_6.10.56_i686-pc-linux-gnu.sh
Linux 64 - http://boinc.berkeley.edu/dl/boinc_6.10.56_x86_64-pc-linux-gnu.sh
Mac - http://boinc.berkeley.edu/dl/boinc_6.10.56_universal-apple-darwin.zip
MacOSX - http://boinc.berkeley.edu/dl/boinc_6.10.56_macOSX_universal.zip
MacOSX - http://boinc.berkeley.edu/dl/boinc_6.10.56_macOSX_SymbolTables.zip

Changelog:
released: 24 May 2010

New: Updated localization files
New: Added accessibility support for advanced view (Mac)
New: Added support for parsing username and password information from environment variables
New: Added ability to ignore specific GPU cards through the use of ignore device through the use of a configuration file option
New: Added ability to suspend BOINC's use of GPUs when certain applications are run through the use of a configuration file option
New: Allow new screen saver options to be configured via the OS specific configuration screen
New: Snooze GPU option off of the system tray menu
New: Adjust GPU activity settings via the advanced view activity menu
New: Added ability for a project to be specified as a "Backup Project" by setting its resource share to 0
New: Suspend computation of BOINC applications if CPU usage from non-BOINC applications exceeds a volunteer defined value (Defaults to 25%)
New: Support detecting SSE2, SSE3, and other forms of advanced instruction sets for older Windows machines (Windows)
New: Support for custom installers to automatically cause new accounts to join a specific team when atteching to a project for the first time (Windows)
New: Support for Nvidia Fermi cards
New: Added support for 'Transfer at most X Megabytes every N days' preference
Fix: Name resolution issues (Mac)
Fix: Activity Menu display issues (Linux)
Fix: Reduce CPU load in dealing with communications between manager and core client (Windows)
Fix: Properly display project descriptions on Windows XP machines in the attach to project wizard
Fix: Numerous CPU/GPU scheduling fixes
Fix: Numerous work-fetch fixes
Fix: Mac Installer for non-admin installs
Fix: Recover from crashes in Nvidia and ATI GPU functions (Linux, Mac)
Fix: Reap child processes spawned from a wrapper on Posix systems (Linux, Mac)
Fix: If a project supports ATI or Nvidia projects, display their icons in the project list
Fix: Show most commonly used preferences in use during startup via messages.
 
Zuletzt bearbeitet:
Zuletzt bearbeitet:
Korrektes Herunterfahren klappt leider immer noch nicht. Obwohl nichts berechnet wird, kann Boinc nicht beendet werden.
 
Ich habe Probleme bei der aktuellen Development version 6.11.6 und BAM!
Nach dem Upgrad von 6.11.4 auf 6.11.6 hatte ich Probleme den Manager mit BAM zu synchronisieren. Nach der Abmeldung bei BAM und der erneuten Anmeldung bekomme ich nun immer eine Fehlermeldung:
Invalid email address, please enter a valid email address!
Was mache ich bloß falsch??
 
Es gibt mehrere Warnungen bzgl Boinc 6.11.6 - daher ggf. downgrade auf 6.11.4 machen
 
Ansonsten lief es ja noch sehr gut. Boinc 6.11.6 ist schon 10 Tage alt und ich hätte ja gedacht, dass solche Fehler schnell behoben werden. Naja, die 4er lief auch sehr gut, ich werde wohl am besten doch downgraden müssen
 
So nach langer "Warterei" gibts mal wieder Boinc-Neuerungen, die direkt vom Grünen Planeten kommen :

AMD hat ja bekanntlich einige neue Stream-Geräte auf die freie Wildbahn gelassen:
- NI Barts Familie
- NI Cayman Familie
- Fusion Wrestler Familie
und demn. noch NI Turks Famile

Zusammen mit dem nunmehr endlich erhältlichen Stream SDK 2.3 sowie sehr produktiven Zusammenarbeit vom Dr. Gipsel sowie mir kam folgende Neuerung am 17.12. ins Boinc:

Erkennung folgender AMD Radeon Familien anhand der CAL Target IDs:
12 - "AMD SUMO" - Fusion APU in kommenden "Llano"
13 - "AMD SUPERSUMO" - die 1. große Unbekannte
14 - "AMD Radeon HD 6250/6310 (Wrestler)" - Brazos Plattform (Bobcat)
15 - "AMD Radeon HD 6900 series (Cayman)"
16 - "AMD RESERVED2" - die 2. große Unbekannte jedoch mit VLIW4-Architektur ggf Antilles ???
17 - "AMD Radeon HD 6800 series (Barts)"
18 - "AMD Radeon HD 6x00 series (Turks)"
19 - "AMD Radeon HD 6300 series (Caicos)"

Somit werden mit dem nächsten Build - 6.12.10 - die neuen AMD-Karten nicht mehr als "ATI unknown" ausgegeben sondern zB eine 6850 als "AMD Radeon HD 6800 series (Barts)" - ein kleiner Schritt aber dank AMD's merkwürdiger Stream-Datentypen halt nicht anders realisierbar ...

Leider sind auch weiterhin genauere Unterscheidungen (zb 6850 oder 6870) bzw Radeon oder FireGL nicht möglich ..


Nachtrag : gefixed - siehe Mr Ice !
 
Zuletzt bearbeitet:
Stimmt - man sollte nich so viel Valve Steam nebenbei offen haben ...;)

Nachtrag 2:

"Nebenbei" wurde auch gleich ein kleiner Fehler bei den AMD/ATI Namen behoben:

von "ATI Radeon HD5..." zu "ATI Radeon HD 5...." - immehin standen die 2xxx/3xxx/4xxx auch als "ATI Radeon HD Xxxx ..."
 
Zuletzt bearbeitet:
Darauf sollten wir anstoßen! :w_feiern:
Mal sehen welcher Meilenstein als nächstes von ATI AMD kommt :w_grins:
 
*rofl*

Wie wäre es mal mit einem "gutem" Treiber... das wäre mal ein Meilenstein 8)
 
Mir würde es schon reichen, wenn in einer der beiden Info-Datenstrukturen von CAL ( CALdeviceinfo oder CALdeviceattribs ) zusätzlich der Namens-String oder ne PCI-Device ID auftauchen würde ....


Meilensteine:

Da ich PC-User und kein MACianer bin - haben mich die ganzen MacOSx-Dinge überhaupt nicht interessiert ....

es hat mich jedoch gestört, dass da nur "ATI unknown" stand - anstelle von Radeon HD 68xx .... (siehe Collatz)
 
Zurück
Oben Unten