<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d"><br>
</div>When it comes to the ATI Remote Wonder, lirc_atiusb and ati_remote are 2<br>
different ways of using the remote that cannot be mixed. &nbsp;I&#39;m guessing<br>
that&#39;s true, also, with the RW+.<br>
<br>
</blockquote></div>They are mutually exclusive.&nbsp; ati_remote.c is the module you would use to use it as a keyboard/mouse<br><br>Then I just recompile the ati_remote module, not the whole list of them.&nbsp; so I have an remote directory in my home directory that contains the source file, a makefile, and an install script.&nbsp; May not be perfect, but it is what I use, but again, I have to blacklist the lirc_atiusb module, and not use lirc with the remote.<br>
<br>Makefile<br>obj-m&nbsp;&nbsp;&nbsp; := ati_remote.o<br><br>KDIR&nbsp;&nbsp;&nbsp; := /lib/modules/$(shell uname -r)/build<br>PWD&nbsp;&nbsp;&nbsp; := $(shell pwd)<br><br>default:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules<br><br>install.sh<br>#!/bin/sh<br>
install -m 644 ati_remote.ko /lib/modules/`uname -r`/kernel/drivers/input/misc<br>/sbin/depmod -a<br><br>