Hello, my project going on.
And now to clean the system to maximize system memory.
First just set the shared gpu/cpu mem to min to gpu in config.txt.
gpu_mem_256=16
Working very well.
And now lists the kernel modules loaded in boot, to see what modules i can remove.
lsmod
Now i can remove them via blacklist boot args.
blacklist=evdev,i2c_dev,bcm2835_gpiomem,bcm2835_wdt
Seams going like my correct path.
But now to the problem, now I can see that i2c_dev is loaded anyway.
Have tried to figure out what's loading that.
Have also in config.txt added these lines, to see if the device-tree loading this.
dtparam=i2c=off,spi=off,i2s=off
dtparam=i2c_arm=off
But it's not working...my bad.. maybe... don't figure out where it's loaded.
I can remove the module with rmmod i2c_dev... but i want to do i't the correct way... not just like a workaround.
Sorry don'r mention my system is... here it is.
piCore-8.1.3.zip
tc@box:~$ uname -a
Linux box 4.4.39-piCore+ #1 Mon Dec 26 11:48:10 UTC 2016 armv6l GNU/Linux
Thanks in advanced.