by BuffaloM » Mon Jan 16, 2012 2:46 am
$this->bbcode_second_pass_quote('jasonlotp', '
')Did you actually change your kernel or were you able to compile these and install them as separate packages?
I didn't replace the kernel, only built modules for it. I grabbed the source from
https://pogoplug.com/opensource that matched what I was booting (from the output of uname -r) and used WarheadSE's PRO.config file as the .config file. I'm not sure if that necessary if you select the right architecture, but I didn't want to waste time finding out.
From memory (hopefully I remembered all of the steps - also make sure to grab gcc and make from pacman if you haven't already):
$this->bbcode_second_pass_code('', '
cd /usr/src
wget http://download.pogoplug.com/opensource/pro/pogopro-linux-2.6.31.6-r2.tar.bz2
tar -jxvf pogopro-linux-2.6.31.6-r2.tar.bz2
ln -s /usr/src/pogopro-linux-2.6.31.6-r2 /lib/modules/2.6.31.6_SMP_820/build
cd pogopro-linux-2.6.31.6-r2
[scp'd the PRO.config over]
mv PRO.config .config
make CC=gcc LD=ld menuconfig
[selected the drivers I wanted making sure they would build as modules (M) - I needed cp210x for the Davis adapter. You may need something else - check the output of lsusb and/or google]
make CC=gcc LD=ld scripts
make CC=gcc LD=ld modules
[make CC=gcc LD=ld modules install probably would have worked here, but I moved the files over because it made more modules than I wanted due to leaving most of the defaults in and I didn't want to overwrite anything.]
mv drivers/usb/serial/cp210x.ko /lib/modules/2.6.31.6_SMP_820/kernel/drivers/usb/serial/cp210x.ko
mv drivers/usb/serial/usbserial.ko /lib/modules/2.6.31.6_SMP_820/kernel/drivers/usb/serial/usbserial.ko
depmod -a
[good idea to make sure you didn't miss anything needed by checking with: modinfo cp210x |grep depends e.g., cp210x needs usbserial]
modprobe cp210x')
$this->bbcode_second_pass_quote('jasonlotp', '
')Did you compile wview from source or were you able to use one of the distributions?
radlib-2.11.3 and wview-5.19.0 both compiled from source without a problem. radlib's configure needed --enable-sqlite. Every time one of the configure scripts complained something was missing I went to pacman and installed the needed files - e.g., pacman -Sy sqlite3 etc depending on what it was. All of the files other than wview and radlib were already available in the repository.