FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14455 questions

17168 answers

28195 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
0 votes
322 views 0 comments
by anonymous
Trying to use a microSD on my RUT955, running official openwrt, the system does not "see" a suitable device.

Using the same SD-card on another type of router, 'ls /dev' shows a 'mmcblk0' device, which I can successfully use for storage.

So, may be some special kernel module(s) missing for the RUT955. I already included kmod-mmc and kmod-mmcspi, without success.

Any help here ?

2 Answers

0 votes
by anonymous
Hi,

I'm afraid I will not be able to help you as your FW isn't the original that came up with the device.

Please refer to OpenWRT forums, I believe you could find help there.

EB.
0 votes
by anonymous

Check your DTS, add 

microsd@1 {
		status = "okay";
		compatible = "mmc-spi-slot";
                spi-max-frequency = <25000000>;
                reg = <1>;
                voltage-ranges = <3200 3400>;
		non-removable;
		disable-wp;
		no-sdio;
		no-mmc;
	};

in the &spi section.

Regards,