Tiny Core Linux
Tiny Core Extensions => TCE Q&A Forum => Topic started by: PIRAT507 on October 15, 2010, 05:29:23 PM
-
Tinycore: Wonderful distro
Now I want to use my wireless USB device. In Debian the firmware is in ralink-firmware.deb.
Called rt2870.bin. It is placed in /lib/firmware. It works.
How to integrate such firmware in tiny/microcore?
Thanks!
-
You can use AppsBrowser to see what provides that.
AppsBrowser->Connect->toggle Search to Provides
type rt2870 to see results of
firmware.tcz
rt2870-2.6.33-tinycore.tcz
Click on firmware and select files tab to see that there it is!
With wireless you will likely need
wireless-2.6.33.3-tinycore.tcz
wireless_tools.tcz
firmware.tcz
and/or perhaps the rt2870-2.6.33-tinycore.tcz use files tab to see what it provides.
-
You could just install the 'firmware.tcz' extension, as the file you mentioned is included in it.
Otherwise if you already have the file at hand, you could create your very own private extension: You need the 'squashfs-tools-4.x.tcz' extension, and then perform something like:
mkdir -p /tmp/my_ext/usr/local/lib/firmware
sudo chown -R root:root /tmp/my_ext/
sudo cp -p rt2870.bin /tmp/my_ext/usr/local/lib/firmware
mksquashfs /tmp/my_ext my_ext.tcz
Then ensure that 'my_ext.tcz' is copied to your extensions directory (e.g. via cp my_ext.tcz $( cat /opt/.tce_dir)/optional) and included in the extension list for boot time (e.g. via echo my_ext.tcz >> $( cat /opt/.tce_dir)/onboot.lst)
-
Thanks!
I learned from your answers.
It didn't work, then I saw the device was not connected ;-).
Now I'm trying to get this driver running after reboot.
Reboot is FAST ;-)