On Fri, Aug 15, 2014 at 07:48:20AM -0700, walt wrote > AFAICT the only time depmod runs is during the "modules_install" phase. > Do you do "make modules_install" when building a kernel?
I'm lazy. I have 2 scripts sitting in /usr/src which I run from /usr/src/linux. After running "make menuconfig" or "make oldconfig" I run ../makeover which goes like so... #!/bin/bash make && \ make modules_install && \ cp arch/x86_64/boot/bzImage /boot/kernel-experimental && \ cp System.map /boot/System.map-experimental && \ cp .config /boot/config-experimental && \ lilo Once an experimental kernel has been running OK for a couple of weeks, I promote it to production with the script ../promote #!/bin/bash cp /boot/System.map-experimental /boot/System.map-production cp /boot/config-experimental /boot/config-production cp /boot/kernel-experimental /boot/kernel-production lilo My lilo boot menu has 2 boot choices, "Production" and "Experimental". > BTW, the kernel build scripts do use python as well as perl. Have you > tried python-updater and checked to see if your various "eselect python" > settings are appropriate? [thimk][root][~] python-updater * Starting Python Updater... * Main active version of Python: 2.7 * Active version of Python 2: 2.7 * Active version of Python 3: 3.3 * Globally supported Python ABIs in installed repositories: * gentoo: 2.4 2.5 2.6 2.7 3.1 3.2 3.3 2.5-jython 2.7-jython 2.7-pypy-1.7 2.7-pypy-1.8 2.7-pypy-1.9 2.7-pypy-2.0 * No packages need to be reinstalled. > What is your "ll" command? I have it aliased to run 'ls -laF|less' but > yours is obviously something else. alias ll='ls $LS_OPTIONS -al' -- Walter Dnes <waltd...@waltdnes.org> I don't run "desktop environments"; I run useful applications