Skip to main content

Thread: Help building a minimalist kernel.


i've managed build kernel, build minimalist 1 drivers/modules needed hardware. i've set cronjob run

code:
#!/bin/bash  dbfile=$home/mp.log  [[ -f $dbfile ]] || touch "$dbfile" || exit 1  lcbefore=$(wc -l < "$dbfile") comm -23 <(awk '{print $1}' /proc/modules | sort) <(sort "$dbfile") >> "$dbfile" lcafter=$(wc -l < "$dbfile")  new=$(( lcafter - lcbefore )) (( new )) && echo "found $new new modules"  exit 0
every 5 minutes couple of weeks. build kernel these modules.

can point me in right direction?

localmodconfig


Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Help building a minimalist kernel.


Ubuntu

Comments