This list is closed, nobody may subscribe to it.
2004 |
Jan
(103) |
Feb
(56) |
Mar
(25) |
Apr
(38) |
May
(24) |
Jun
(20) |
Jul
(22) |
Aug
(23) |
Sep
(1) |
Oct
(24) |
Nov
(8) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(14) |
Feb
(23) |
Mar
(7) |
Apr
(23) |
May
(11) |
Jun
(1) |
Jul
(29) |
Aug
(7) |
Sep
|
Oct
|
Nov
(8) |
Dec
(11) |
2006 |
Jan
|
Feb
(24) |
Mar
(22) |
Apr
(1) |
May
(8) |
Jun
|
Jul
|
Aug
(1) |
Sep
(6) |
Oct
|
Nov
(2) |
Dec
(4) |
2007 |
Jan
(1) |
Feb
(4) |
Mar
(5) |
Apr
(10) |
May
|
Jun
(5) |
Jul
(3) |
Aug
(3) |
Sep
(6) |
Oct
(11) |
Nov
(3) |
Dec
(4) |
2008 |
Jan
(8) |
Feb
(19) |
Mar
(43) |
Apr
(27) |
May
(15) |
Jun
(10) |
Jul
(39) |
Aug
(9) |
Sep
(12) |
Oct
(15) |
Nov
(14) |
Dec
(4) |
2009 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
(15) |
2010 |
Jan
(2) |
Feb
(7) |
Mar
|
Apr
(16) |
May
|
Jun
(4) |
Jul
(1) |
Aug
|
Sep
|
Oct
(9) |
Nov
(2) |
Dec
|
2011 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
(4) |
May
(2) |
Jun
(2) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(5) |
Dec
(3) |
2012 |
Jan
(12) |
Feb
(3) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2017 |
Jan
(1) |
Feb
(2) |
Mar
(7) |
Apr
(2) |
May
|
Jun
(2) |
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Nigel H. <nj...@ba...> - 2014-05-29 19:31:03
|
On 29/05/2014 14:39, sfan5 wrote: > Hi, > > I've been trying to port the Gamecube/Wii framebuffer driver to Linux 3.14. > I took the latest version of gcnfb.c available and applied a patch to > fix color problems with applications such as Xorg or colored terminal > output( http://fartersoft.com/downloads/vfb-wii.diff ) and tried to port. > Despite my efforts the driver does not work as expected. > I hope someone can help me with porting. > The patch for my current work can be found here: http://sprunge.us/ESCd Interesting and good luck. I can't help you, but I can let you know that there are users of Linux on the Wii out there so please stick with it! > > sfan5 > > -Nigel |
From: Michael M. <mwm...@li...> - 2014-05-29 19:17:44
|
I've done a fair bit of work already trying to update/forward port each of those. My work so far can be found on Github here: https://github.com/DeltaResero > Date: Thu, 29 May 2014 20:39:17 +0200 > From: sf...@ym... > To: gc-...@li... > Subject: [Gc-linux-devel] Effort to port the gcnfb driver to newer Linux versions > > Hi, > > I've been trying to port the Gamecube/Wii framebuffer driver to Linux 3.14. > I took the latest version of gcnfb.c available and applied a patch to > fix color problems with applications such as Xorg or colored terminal > output( http://fartersoft.com/downloads/vfb-wii.diff ) and tried to port. > Despite my efforts the driver does not work as expected. > I hope someone can help me with porting. > The patch for my current work can be found here: http://sprunge.us/ESCd > > sfan5 > > > ------------------------------------------------------------------------------ > Time is money. Stop wasting it! Get your web API in 5 minutes. > www.restlet.com/download > http://p.sf.net/sfu/restlet > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: sfan5 <sf...@ym...> - 2014-05-29 18:39:32
|
Hi, I've been trying to port the Gamecube/Wii framebuffer driver to Linux 3.14. I took the latest version of gcnfb.c available and applied a patch to fix color problems with applications such as Xorg or colored terminal output( http://fartersoft.com/downloads/vfb-wii.diff ) and tried to port. Despite my efforts the driver does not work as expected. I hope someone can help me with porting. The patch for my current work can be found here: http://sprunge.us/ESCd sfan5 |
From: Wood J. <rt...@ho...> - 2012-09-26 15:10:57
|
any game / demo discs one can download ? ----- Jeff http://www.rtdos.com |
From: Rena <hyp...@gm...> - 2012-09-23 21:19:07
|
Compiling devkitPPC on my Wii was taking forever, and from my couch I can't really see the screen to see how it's going. So I hacked together a simple script to control the blue disc drive LED: #!/bin/bash #installed as /usr/local/bin/discled echo 250 > /sys/class/gpio/export echo out > /sys/class/gpio/gpio250/direction echo $1 > /sys/class/gpio/gpio250/value echo 250 > /sys/class/gpio/unexport And a .bashrc hack to use it: # turn disc LED off before displaying a prompt, so that # we know the command has finished PROMPT_COMMAND='discled 0 > /dev/null 2>&1' # turn it on before executing a command trap 'discled 1 > /dev/null 2>&1' DEBUG Now, whenever you run a command in bash, the LED will turn on, and turn off again when the command finishes. That way you can easily look over to see if the LED is still on, to check if your long-running compile is finished yet. Of course this is a dirty hack, so it's far from perfect. The LED will be on the entire time you're working in nano, will turn on/off when you're working in other terminals while one is busy, won't inform you if the batch job is paused waiting for user input, etc. A smarter program might run as a daemon, turning the LED on whenever CPU/disk/network activity is high enough or blinking it whenever a character is written to the terminal, under the assumption that if the job is paused or finished, the system is going to be mostly idle. But that's another hack for another day. One amusing side effect is that you won't be able to simply turn the LED on using the script, because bash will immediately turn it off again. If you want to do that (say because you executed a command in one terminal while another was busy, and want to turn it back on to monitor that job), you can do: (sleep 1; discled 1)& So that after bash shows the prompt (and turns the LED off), it'll turn back on a second later. -- Sent from my toaster. |
From: Rena <hyp...@gm...> - 2012-09-22 14:55:13
|
How do I access the Gamecube controller ports on my Wii? Is there a character device for them? Ultimately I want to send multiboot programs to a GBA... I don't suppose there's anything for that built in? ;-) |
From: Darwin O'C. <do...@gm...> - 2012-07-11 19:32:25
|
I have been trying to use my Wii to record video. I'm using MIKE p5 kernal with the wiitoo Gentoo distrubution. I've compiled ffmpeg, but when I try and capture video it fails because it can't allocate enough memory. I added some debugging code to ffmpeg and I found that the VIDIOC_QUERYBUF ioctl commend, which returns the size and location of video buffers in the memory mapped file, is giving a size of 16777216 and a location of -1412567296. These are clearly invalid values. This happens for both the em28xx USB video capture device I have and the V4L virtual video device. Does anyone have any suggestions on what the cause could be. |
From: Aliz 'Randomdude' <ran...@gm...> - 2012-05-24 11:45:16
|
Hi list. I've made some enhancements to the gc-linux sd-gecko driver, and thought I'd share. I hope this mailinglist is the right place to submit such patches - my apologies if not! My patch fixes the console_write function, which should return the number of characters written (previous behaviour was to return the count of characters to write, silently dropping if buffers were full). I've also added a ring buffer for data transmission while I was in there. The difference may not be noticeable if you just run a console over the Gecko, but if you end up running PPP over it, it's the difference between 150ms pings and 300 second pings! :) As a caveat, I've only been able to test my updates on my homebrew gecko, not on a 'real' one. My homebrew device is based on the available VHDL, so it should be similar, but if anyone has a real gecko and can test, it'd be appreciated! Finally, this is my first kernel patch, so please be kind if I've violated all sorts of style or safety guidelines. I've tried to make the code robust and good against races.. hopefully I haven't missed anything! The patch is against a mikep1 source. -Aliz Hammond / randomdude --- linux-2.6.32.27/drivers/serial/usbgecko.c 2012-03-16 18:28:34.393587508 +0000 +++ ./usbgecko.c 2012-05-24 17:33:16.037171945 +0100 @@ -24,6 +24,8 @@ #include <linux/tty_flip.h> #include <linux/kthread.h> #include <linux/delay.h> +#include <linux/circ_buf.h> +#define XMITSIZE 256 #include <linux/exi.h> @@ -54,6 +56,7 @@ struct task_struct *poller; struct mutex mutex; int refcnt; + struct circ_buf xmit; }; static struct ug_adapter ug_adapters[2]; @@ -342,6 +345,20 @@ } schedule_timeout(1); } + // Now try to transmit anything pending. + if (adapter) { + unsigned long head = ACCESS_ONCE(adapter->xmit.head); + unsigned long tail = adapter->xmit.tail; + count = CIRC_CNT(head, tail, XMITSIZE); + if (count > 0) { + if(ug_safe_putc(adapter, + adapter->xmit.buf[tail])) { + barrier(); + adapter->xmit.tail = (tail + 1) & (XMITSIZE - 1); + } + } + } + set_task_state(current, TASK_RUNNING); } @@ -402,11 +419,37 @@ mutex_unlock(&adapter->mutex); } +static int ug_tty_putchar(struct tty_struct *tty, unsigned char ch) +{ + struct ug_adapter *adapter = tty->driver_data; + struct circ_buf *xmit = &adapter->xmit; + unsigned long head, tail; + int index; + + if (!adapter) + return -ENODEV; + + index = tty->index; + adapter = &ug_adapters[index]; + + head = xmit->head; + tail = ACCESS_ONCE(xmit->tail); + + if( CIRC_SPACE(head, tail, XMITSIZE) == 0) + return 0; + + xmit->buf[head] = ch; + barrier(); + xmit->head = (head + 1) & (XMITSIZE - 1); + + return 1; +} + static int ug_tty_write(struct tty_struct *tty, const unsigned char *buf, int count) { struct ug_adapter *adapter = tty->driver_data; - char *b = (char *)buf; + unsigned long head, tail; int index; int i; @@ -415,19 +458,42 @@ index = tty->index; adapter = &ug_adapters[index]; - for (i = 0; i < count; i++) - ug_safe_putc(adapter, *b++); + + head = ACCESS_ONCE(adapter->xmit.head); + tail = adapter->xmit.tail; + + // Simply pass all our data to putchar. + for(i=0; i<count; i++) + ug_tty_putchar(tty, buf[i]); + return count; } static int ug_tty_write_room(struct tty_struct *tty) { - return 0x123; /* whatever */ + struct ug_adapter *adapter = tty->driver_data; + + if (!adapter) + return 0; + + unsigned long head = ACCESS_ONCE(adapter->xmit.head); + unsigned long tail = adapter->xmit.tail; + + return CIRC_SPACE(head, tail, XMITSIZE); } static int ug_tty_chars_in_buffer(struct tty_struct *tty) { - return 0; /* unbuffered */ + struct ug_adapter *adapter = tty->driver_data; + unsigned long head, tail; + + if (!adapter) + return 0; + + head = ACCESS_ONCE(adapter->xmit.head); + tail = adapter->xmit.tail; + + return CIRC_CNT(head, tail, XMITSIZE); } @@ -435,6 +501,7 @@ .open = ug_tty_open, .close = ug_tty_close, .write = ug_tty_write, + .put_char = ug_tty_putchar, .write_room = ug_tty_write_room, .chars_in_buffer = ug_tty_chars_in_buffer, }; @@ -507,6 +574,13 @@ adapter->poller = ERR_PTR(-EINVAL); mutex_init(&adapter->mutex); adapter->refcnt = 0; + adapter->xmit.head = adapter->xmit.tail = 0; + adapter->xmit.buf = kmalloc(XMITSIZE, GFP_KERNEL); + if(!adapter->xmit.buf) + { + drv_printk(KERN_ERR, "USB Gecko: kmalloc failed\n"); + return 1; + } adapter->exi_device = exi_device_get(exi_device); exi_set_drvdata(exi_device, adapter); |
From: Gerard <no...@gm...> - 2012-02-16 07:29:38
|
Sorry I meant wii support not linux support... El día 12 de febrero de 2012 21:24, Gerard <no...@gm...> escribió: > I forgot to say that I'm using the branch 3.3 because the 3.2 didn't compile. > > 2012/2/12 Gerard <no...@gm...>: >> Hello, >> It is supposed to work the linux support included in the last linux >> kernel release? I tried to compile it as I have been doing with the >> version 2.6.32 but I cannot get it working.. is there any important >> option I have to enable in the config to get it working? I just don't >> see anything in the screen when booting.I tried using my old .config >> and the default wiiconfig found in the kernel sources. >> I am using the toolchain >> buildroot-20090131gcn1-i686-cross-powerpc.tar.bz2 and i never had any >> problem to get the kernel work with the mike p5 patches, I am missing >> something? >> >> thanks, >> >> Gerard |
From: Gerard <no...@gm...> - 2012-02-12 20:24:33
|
I forgot to say that I'm using the branch 3.3 because the 3.2 didn't compile. 2012/2/12 Gerard <no...@gm...>: > Hello, > It is supposed to work the linux support included in the last linux > kernel release? I tried to compile it as I have been doing with the > version 2.6.32 but I cannot get it working.. is there any important > option I have to enable in the config to get it working? I just don't > see anything in the screen when booting.I tried using my old .config > and the default wiiconfig found in the kernel sources. > I am using the toolchain > buildroot-20090131gcn1-i686-cross-powerpc.tar.bz2 and i never had any > problem to get the kernel work with the mike p5 patches, I am missing > something? > > thanks, > > Gerard |
From: Gerard <no...@gm...> - 2012-02-12 20:18:05
|
Hello, It is supposed to work the linux support included in the last linux kernel release? I tried to compile it as I have been doing with the version 2.6.32 but I cannot get it working.. is there any important option I have to enable in the config to get it working? I just don't see anything in the screen when booting.I tried using my old .config and the default wiiconfig found in the kernel sources. I am using the toolchain buildroot-20090131gcn1-i686-cross-powerpc.tar.bz2 and i never had any problem to get the kernel work with the mike p5 patches, I am missing something? thanks, Gerard |
From: Andrew <tux...@gm...> - 2012-01-17 20:38:30
|
Hmm... I do happen to have my Wii available to test it out, but I no longer use Wii-Linux; I used it for a bit so I would get a small PPC server, but alas: I now do my stuff from a Ubuntu desktop I don't use much anymore. On 01/17/2012 12:44 PM, Adam Shumann wrote: > I had lots of apt-get issues with that tarball. :/ > May try it again later to verify that I didnt screw it up somehow... > > > On Tue, Jan 17, 2012 at 2:43 AM, GoatZilla <goa...@gm... > <mailto:goa...@gm...>> wrote: > > I tried running the dist-upgrade; that was pretty ugly. > > Any reason why you didn't just opt for debootstrap (aside from lack of > a second SD card)? > > > On Tue, Jan 3, 2012 at 3:32 AM, Andrew <tux...@gm... > <mailto:tux...@gm...>> wrote: > > My Wii is running Debian squeeze now. Here's how I did it: > > > > 1. installed whiite manually and configured it to use wifi > > 2. ran apt-get update and apt-get upgrade as root (this is > important!) > > 3. changed /etc/apt/sources.list to squeeze > > 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade > (This does > > the upgrade) > > 5. rebooted and watched as system booted > > 6. celebrated with beer (kidding there) > > > > I will post a upgraded rootfs sometime later. > > > > > ------------------------------------------------------------------------------ > > Write once. Port to many. > > Get the SDK and tools to simplify cross-platform app > development. Create > > new or port existing apps to sell to consumers worldwide. > Explore the > > Intel AppUpSM program developer opportunity. > appdeveloper.intel.com/join <http://appdeveloper.intel.com/join> > > http://p.sf.net/sfu/intel-appdev > > _______________________________________________ > > gc-linux-devel mailing list > > gc-...@li... > <mailto:gc-...@li...> > > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > > ------------------------------------------------------------------------------ > Keep Your Developer Skills Current with LearnDevNow! > The most comprehensive online learning library for Microsoft > developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, > MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-d2d > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > <mailto:gc-...@li...> > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > > > > > ------------------------------------------------------------------------------ > Keep Your Developer Skills Current with LearnDevNow! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-d2d > > > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Andrew <tux...@gm...> - 2012-01-17 20:33:47
|
So everything would "work out of the box" with existing instructions, mainly. On 01/17/2012 03:43 AM, GoatZilla wrote: > I tried running the dist-upgrade; that was pretty ugly. > > Any reason why you didn't just opt for debootstrap (aside from lack of > a second SD card)? > > > On Tue, Jan 3, 2012 at 3:32 AM, Andrew<tux...@gm...> wrote: >> My Wii is running Debian squeeze now. Here's how I did it: >> >> 1. installed whiite manually and configured it to use wifi >> 2. ran apt-get update and apt-get upgrade as root (this is important!) >> 3. changed /etc/apt/sources.list to squeeze >> 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does >> the upgrade) >> 5. rebooted and watched as system booted >> 6. celebrated with beer (kidding there) >> >> I will post a upgraded rootfs sometime later. >> >> ------------------------------------------------------------------------------ >> Write once. Port to many. >> Get the SDK and tools to simplify cross-platform app development. Create >> new or port existing apps to sell to consumers worldwide. Explore the >> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >> http://p.sf.net/sfu/intel-appdev >> _______________________________________________ >> gc-linux-devel mailing list >> gc-...@li... >> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > ------------------------------------------------------------------------------ > Keep Your Developer Skills Current with LearnDevNow! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-d2d > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Adam S. <ash...@gm...> - 2012-01-17 17:45:13
|
I had lots of apt-get issues with that tarball. :/ May try it again later to verify that I didnt screw it up somehow... On Tue, Jan 17, 2012 at 2:43 AM, GoatZilla <goa...@gm...> wrote: > I tried running the dist-upgrade; that was pretty ugly. > > Any reason why you didn't just opt for debootstrap (aside from lack of > a second SD card)? > > > On Tue, Jan 3, 2012 at 3:32 AM, Andrew <tux...@gm...> wrote: > > My Wii is running Debian squeeze now. Here's how I did it: > > > > 1. installed whiite manually and configured it to use wifi > > 2. ran apt-get update and apt-get upgrade as root (this is important!) > > 3. changed /etc/apt/sources.list to squeeze > > 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does > > the upgrade) > > 5. rebooted and watched as system booted > > 6. celebrated with beer (kidding there) > > > > I will post a upgraded rootfs sometime later. > > > > > ------------------------------------------------------------------------------ > > Write once. Port to many. > > Get the SDK and tools to simplify cross-platform app development. Create > > new or port existing apps to sell to consumers worldwide. Explore the > > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > > http://p.sf.net/sfu/intel-appdev > > _______________________________________________ > > gc-linux-devel mailing list > > gc-...@li... > > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > > > ------------------------------------------------------------------------------ > Keep Your Developer Skills Current with LearnDevNow! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-d2d > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > |
From: GoatZilla <goa...@gm...> - 2012-01-17 08:43:16
|
I tried running the dist-upgrade; that was pretty ugly. Any reason why you didn't just opt for debootstrap (aside from lack of a second SD card)? On Tue, Jan 3, 2012 at 3:32 AM, Andrew <tux...@gm...> wrote: > My Wii is running Debian squeeze now. Here's how I did it: > > 1. installed whiite manually and configured it to use wifi > 2. ran apt-get update and apt-get upgrade as root (this is important!) > 3. changed /etc/apt/sources.list to squeeze > 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does > the upgrade) > 5. rebooted and watched as system booted > 6. celebrated with beer (kidding there) > > I will post a upgraded rootfs sometime later. > > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Andrew <tux...@gm...> - 2012-01-04 09:43:57
|
gc-linux also supports the Wii. On 01/04/2012 03:46 AM, Yassin wrote: > Well this is a mailing for thé gamecube ? > > But good job i happé some one CAN do a vidéo > > Envoyé de mon iPhone > > Le 4 janv. 2012 à 00:30, Andrew<tux...@gm...> a écrit : > >> This is Wii-only, not gamecube. It will fail remounting the filesystem. >> On 01/03/2012 12:43 PM, Yassin wrote: >>> Hé works With gamecube ? >>> >>> Envoyé de mon iPhone >>> >>> Le 3 janv. 2012 à 15:47, Andrew<tux...@gm...> a écrit : >>> >>>> I have now made available a rootfs (168M) with squeeze. I haven't tested >>>> it however. Nevertheless, >>>> http://wonderful.madhacker.biz/debian-whiite-6.0.tbz2 >>>> On 01/03/2012 06:49 AM, Yassin wrote: >>>>> Vêtu cool CAN u havé vidéo please >>>>> >>>>> Envoyé de mon iPhone >>>>> >>>>> Le 3 janv. 2012 à 10:32, Andrew<tux...@gm...> a écrit : >>>>> >>>>>> My Wii is running Debian squeeze now. Here's how I did it: >>>>>> >>>>>> 1. installed whiite manually and configured it to use wifi >>>>>> 2. ran apt-get update and apt-get upgrade as root (this is important!) >>>>>> 3. changed /etc/apt/sources.list to squeeze >>>>>> 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does >>>>>> the upgrade) >>>>>> 5. rebooted and watched as system booted >>>>>> 6. celebrated with beer (kidding there) >>>>>> >>>>>> I will post a upgraded rootfs sometime later. >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> Write once. Port to many. >>>>>> Get the SDK and tools to simplify cross-platform app development. Create >>>>>> new or port existing apps to sell to consumers worldwide. Explore the >>>>>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>>>>> http://p.sf.net/sfu/intel-appdev >>>>>> _______________________________________________ >>>>>> gc-linux-devel mailing list >>>>>> gc-...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >>>>> ------------------------------------------------------------------------------ >>>>> Write once. Port to many. >>>>> Get the SDK and tools to simplify cross-platform app development. Create >>>>> new or port existing apps to sell to consumers worldwide. Explore the >>>>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>>>> http://p.sf.net/sfu/intel-appdev >>>>> _______________________________________________ >>>>> gc-linux-devel mailing list >>>>> gc-...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >>>> ------------------------------------------------------------------------------ >>>> Write once. Port to many. >>>> Get the SDK and tools to simplify cross-platform app development. Create >>>> new or port existing apps to sell to consumers worldwide. Explore the >>>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>>> http://p.sf.net/sfu/intel-appdev >>>> _______________________________________________ >>>> gc-linux-devel mailing list >>>> gc-...@li... >>>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >>> ------------------------------------------------------------------------------ >>> Write once. Port to many. >>> Get the SDK and tools to simplify cross-platform app development. Create >>> new or port existing apps to sell to consumers worldwide. Explore the >>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>> http://p.sf.net/sfu/intel-appdev >>> _______________________________________________ >>> gc-linux-devel mailing list >>> gc-...@li... >>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >> >> ------------------------------------------------------------------------------ >> Write once. Port to many. >> Get the SDK and tools to simplify cross-platform app development. Create >> new or port existing apps to sell to consumers worldwide. Explore the >> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >> http://p.sf.net/sfu/intel-appdev >> _______________________________________________ >> gc-linux-devel mailing list >> gc-...@li... >> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > ------------------------------------------------------------------------------ > Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex > infrastructure or vast IT resources to deliver seamless, secure access to > virtual desktops. With this all-in-one solution, easily deploy virtual > desktops for less than the cost of PCs and save 60% on VDI infrastructure > costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Yassin <fre...@gm...> - 2012-01-04 08:46:18
|
Well this is a mailing for thé gamecube ? But good job i happé some one CAN do a vidéo Envoyé de mon iPhone Le 4 janv. 2012 à 00:30, Andrew <tux...@gm...> a écrit : > This is Wii-only, not gamecube. It will fail remounting the filesystem. > On 01/03/2012 12:43 PM, Yassin wrote: >> Hé works With gamecube ? >> >> Envoyé de mon iPhone >> >> Le 3 janv. 2012 à 15:47, Andrew<tux...@gm...> a écrit : >> >>> I have now made available a rootfs (168M) with squeeze. I haven't tested >>> it however. Nevertheless, >>> http://wonderful.madhacker.biz/debian-whiite-6.0.tbz2 >>> On 01/03/2012 06:49 AM, Yassin wrote: >>>> Vêtu cool CAN u havé vidéo please >>>> >>>> Envoyé de mon iPhone >>>> >>>> Le 3 janv. 2012 à 10:32, Andrew<tux...@gm...> a écrit : >>>> >>>>> My Wii is running Debian squeeze now. Here's how I did it: >>>>> >>>>> 1. installed whiite manually and configured it to use wifi >>>>> 2. ran apt-get update and apt-get upgrade as root (this is important!) >>>>> 3. changed /etc/apt/sources.list to squeeze >>>>> 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does >>>>> the upgrade) >>>>> 5. rebooted and watched as system booted >>>>> 6. celebrated with beer (kidding there) >>>>> >>>>> I will post a upgraded rootfs sometime later. >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> Write once. Port to many. >>>>> Get the SDK and tools to simplify cross-platform app development. Create >>>>> new or port existing apps to sell to consumers worldwide. Explore the >>>>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>>>> http://p.sf.net/sfu/intel-appdev >>>>> _______________________________________________ >>>>> gc-linux-devel mailing list >>>>> gc-...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >>>> ------------------------------------------------------------------------------ >>>> Write once. Port to many. >>>> Get the SDK and tools to simplify cross-platform app development. Create >>>> new or port existing apps to sell to consumers worldwide. Explore the >>>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>>> http://p.sf.net/sfu/intel-appdev >>>> _______________________________________________ >>>> gc-linux-devel mailing list >>>> gc-...@li... >>>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >>> >>> ------------------------------------------------------------------------------ >>> Write once. Port to many. >>> Get the SDK and tools to simplify cross-platform app development. Create >>> new or port existing apps to sell to consumers worldwide. Explore the >>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>> http://p.sf.net/sfu/intel-appdev >>> _______________________________________________ >>> gc-linux-devel mailing list >>> gc-...@li... >>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >> ------------------------------------------------------------------------------ >> Write once. Port to many. >> Get the SDK and tools to simplify cross-platform app development. Create >> new or port existing apps to sell to consumers worldwide. Explore the >> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >> http://p.sf.net/sfu/intel-appdev >> _______________________________________________ >> gc-linux-devel mailing list >> gc-...@li... >> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > > > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Andrew <tux...@gm...> - 2012-01-03 23:30:28
|
This is Wii-only, not gamecube. It will fail remounting the filesystem. On 01/03/2012 12:43 PM, Yassin wrote: > Hé works With gamecube ? > > Envoyé de mon iPhone > > Le 3 janv. 2012 à 15:47, Andrew<tux...@gm...> a écrit : > >> I have now made available a rootfs (168M) with squeeze. I haven't tested >> it however. Nevertheless, >> http://wonderful.madhacker.biz/debian-whiite-6.0.tbz2 >> On 01/03/2012 06:49 AM, Yassin wrote: >>> Vêtu cool CAN u havé vidéo please >>> >>> Envoyé de mon iPhone >>> >>> Le 3 janv. 2012 à 10:32, Andrew<tux...@gm...> a écrit : >>> >>>> My Wii is running Debian squeeze now. Here's how I did it: >>>> >>>> 1. installed whiite manually and configured it to use wifi >>>> 2. ran apt-get update and apt-get upgrade as root (this is important!) >>>> 3. changed /etc/apt/sources.list to squeeze >>>> 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does >>>> the upgrade) >>>> 5. rebooted and watched as system booted >>>> 6. celebrated with beer (kidding there) >>>> >>>> I will post a upgraded rootfs sometime later. >>>> >>>> ------------------------------------------------------------------------------ >>>> Write once. Port to many. >>>> Get the SDK and tools to simplify cross-platform app development. Create >>>> new or port existing apps to sell to consumers worldwide. Explore the >>>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>>> http://p.sf.net/sfu/intel-appdev >>>> _______________________________________________ >>>> gc-linux-devel mailing list >>>> gc-...@li... >>>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >>> ------------------------------------------------------------------------------ >>> Write once. Port to many. >>> Get the SDK and tools to simplify cross-platform app development. Create >>> new or port existing apps to sell to consumers worldwide. Explore the >>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>> http://p.sf.net/sfu/intel-appdev >>> _______________________________________________ >>> gc-linux-devel mailing list >>> gc-...@li... >>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >> >> ------------------------------------------------------------------------------ >> Write once. Port to many. >> Get the SDK and tools to simplify cross-platform app development. Create >> new or port existing apps to sell to consumers worldwide. Explore the >> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >> http://p.sf.net/sfu/intel-appdev >> _______________________________________________ >> gc-linux-devel mailing list >> gc-...@li... >> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Yassin <fre...@gm...> - 2012-01-03 17:44:03
|
Hé works With gamecube ? Envoyé de mon iPhone Le 3 janv. 2012 à 15:47, Andrew <tux...@gm...> a écrit : > I have now made available a rootfs (168M) with squeeze. I haven't tested > it however. Nevertheless, > http://wonderful.madhacker.biz/debian-whiite-6.0.tbz2 > On 01/03/2012 06:49 AM, Yassin wrote: >> Vêtu cool CAN u havé vidéo please >> >> Envoyé de mon iPhone >> >> Le 3 janv. 2012 à 10:32, Andrew<tux...@gm...> a écrit : >> >>> My Wii is running Debian squeeze now. Here's how I did it: >>> >>> 1. installed whiite manually and configured it to use wifi >>> 2. ran apt-get update and apt-get upgrade as root (this is important!) >>> 3. changed /etc/apt/sources.list to squeeze >>> 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does >>> the upgrade) >>> 5. rebooted and watched as system booted >>> 6. celebrated with beer (kidding there) >>> >>> I will post a upgraded rootfs sometime later. >>> >>> ------------------------------------------------------------------------------ >>> Write once. Port to many. >>> Get the SDK and tools to simplify cross-platform app development. Create >>> new or port existing apps to sell to consumers worldwide. Explore the >>> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >>> http://p.sf.net/sfu/intel-appdev >>> _______________________________________________ >>> gc-linux-devel mailing list >>> gc-...@li... >>> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel >> ------------------------------------------------------------------------------ >> Write once. Port to many. >> Get the SDK and tools to simplify cross-platform app development. Create >> new or port existing apps to sell to consumers worldwide. Explore the >> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >> http://p.sf.net/sfu/intel-appdev >> _______________________________________________ >> gc-linux-devel mailing list >> gc-...@li... >> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > > > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Andrew <tux...@gm...> - 2012-01-03 14:47:52
|
I have now made available a rootfs (168M) with squeeze. I haven't tested it however. Nevertheless, http://wonderful.madhacker.biz/debian-whiite-6.0.tbz2 On 01/03/2012 06:49 AM, Yassin wrote: > Vêtu cool CAN u havé vidéo please > > Envoyé de mon iPhone > > Le 3 janv. 2012 à 10:32, Andrew<tux...@gm...> a écrit : > >> My Wii is running Debian squeeze now. Here's how I did it: >> >> 1. installed whiite manually and configured it to use wifi >> 2. ran apt-get update and apt-get upgrade as root (this is important!) >> 3. changed /etc/apt/sources.list to squeeze >> 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does >> the upgrade) >> 5. rebooted and watched as system booted >> 6. celebrated with beer (kidding there) >> >> I will post a upgraded rootfs sometime later. >> >> ------------------------------------------------------------------------------ >> Write once. Port to many. >> Get the SDK and tools to simplify cross-platform app development. Create >> new or port existing apps to sell to consumers worldwide. Explore the >> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >> http://p.sf.net/sfu/intel-appdev >> _______________________________________________ >> gc-linux-devel mailing list >> gc-...@li... >> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Andrew <tux...@gm...> - 2012-01-03 13:08:48
|
Try it for yourself :) On 01/03/2012 06:49 AM, Yassin wrote: > Vêtu cool CAN u havé vidéo please > > Envoyé de mon iPhone > > Le 3 janv. 2012 à 10:32, Andrew<tux...@gm...> a écrit : > >> My Wii is running Debian squeeze now. Here's how I did it: >> >> 1. installed whiite manually and configured it to use wifi >> 2. ran apt-get update and apt-get upgrade as root (this is important!) >> 3. changed /etc/apt/sources.list to squeeze >> 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does >> the upgrade) >> 5. rebooted and watched as system booted >> 6. celebrated with beer (kidding there) >> >> I will post a upgraded rootfs sometime later. >> >> ------------------------------------------------------------------------------ >> Write once. Port to many. >> Get the SDK and tools to simplify cross-platform app development. Create >> new or port existing apps to sell to consumers worldwide. Explore the >> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >> http://p.sf.net/sfu/intel-appdev >> _______________________________________________ >> gc-linux-devel mailing list >> gc-...@li... >> https://lists.sourceforge.net/lists/listinfo/gc-linux-devel > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Yassin <fre...@gm...> - 2012-01-03 11:50:15
|
Vêtu cool CAN u havé vidéo please Envoyé de mon iPhone Le 3 janv. 2012 à 10:32, Andrew <tux...@gm...> a écrit : > My Wii is running Debian squeeze now. Here's how I did it: > > 1. installed whiite manually and configured it to use wifi > 2. ran apt-get update and apt-get upgrade as root (this is important!) > 3. changed /etc/apt/sources.list to squeeze > 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does > the upgrade) > 5. rebooted and watched as system booted > 6. celebrated with beer (kidding there) > > I will post a upgraded rootfs sometime later. > > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Andrew <tux...@gm...> - 2012-01-03 09:32:29
|
My Wii is running Debian squeeze now. Here's how I did it: 1. installed whiite manually and configured it to use wifi 2. ran apt-get update and apt-get upgrade as root (this is important!) 3. changed /etc/apt/sources.list to squeeze 4. ran apt-get update; apt-get upgrade; apt-get dist-upgrade (This does the upgrade) 5. rebooted and watched as system booted 6. celebrated with beer (kidding there) I will post a upgraded rootfs sometime later. |
From: GoatZilla <goa...@gm...> - 2011-12-20 18:09:45
|
Finally decided to give it a try yesterday; everything seems to work just fine. I Imagine they just pulled the external GameCube ports/support for the "Family Edition"; the rest seems the same. Now to see if I can get a newer kernel/distro working... On Sun, Dec 18, 2011 at 10:02 AM, Lucas Jones <lu...@lu...> wrote: > It's been a while since I've used it, but I think as long as you run > Linux from BootMii (even if BootMii is run from IOS), it has full > access to the hardware. On my newer Wii, WLAN works, and I've used a > USB keyboard, mouse, SD card reader and flash drive running from > BootMii on IOS without problems. You would need to check that the > kernel is built with V4L support, and that you can get the appropriate > USB webcam driver modules built for PowerPC. > > Googling a bit, it does seem all the `Family Edition' configuration > does is remove GameCube compatibility; I wouldn't imagine this would > affect HBC/BootMii, given that they don't need/touch MIOS at all any > more. You'd need to try it to be sure; there might be other hardware > missing. > > Lucas Jones > > ------------------------------------------------------------------------------ > Learn Windows Azure Live! Tuesday, Dec 13, 2011 > Microsoft is holding a special Learn Windows Azure training event for > developers. It will provide a great way to learn Windows Azure and what it > provides. You can attend the event by watching it streamed LIVE online. > Learn more at http://p.sf.net/sfu/ms-windowsazure > _______________________________________________ > gc-linux-devel mailing list > gc-...@li... > https://lists.sourceforge.net/lists/listinfo/gc-linux-devel |
From: Lucas J. <lu...@lu...> - 2011-12-18 16:30:06
|
It's been a while since I've used it, but I think as long as you run Linux from BootMii (even if BootMii is run from IOS), it has full access to the hardware. On my newer Wii, WLAN works, and I've used a USB keyboard, mouse, SD card reader and flash drive running from BootMii on IOS without problems. You would need to check that the kernel is built with V4L support, and that you can get the appropriate USB webcam driver modules built for PowerPC. Googling a bit, it does seem all the `Family Edition' configuration does is remove GameCube compatibility; I wouldn't imagine this would affect HBC/BootMii, given that they don't need/touch MIOS at all any more. You'd need to try it to be sure; there might be other hardware missing. Lucas Jones |