i've managed build kernel, build minimalist 1 drivers/modules needed hardware. i've set cronjob run
every 5 minutes couple of weeks. build kernel these modules.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
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
Post a Comment