kernel

Lindqvist — a blog about Linux and Science. Mostly.: Compiling kernel 3.4 on debian

Compiling kernel 3.4 on debian The steps are the usual ones. At this point compiling your kernel is perhaps more of a hobby than a necessity to most people, unless you happen to have some fancy piece of hardware that’s about to become supported. It’s not difficult, so there’s no reason not to give it …

Lindqvist — a blog about Linux and Science. Mostly.: Compiling kernel 3.4 on debian Lire la suite »

ShrimpWorks » Change your console resolution and colour depth

Pour la console système kernel : vga= Colors ( depth) 640×480 800×600 1024×768 1280×1024 1600×1200 —————+——-+——-+——–+———+——— 256 ( 8 bit)| 769 771 773 775 796 32,768 (15 bit)| 784 787 790 793 797 65,536 (16 bit)| 785 788 791 794 798 16.8M (24 bit)| 786 789 792 795 799 viaShrimpWorks » Change your console resolution …

ShrimpWorks » Change your console resolution and colour depth Lire la suite »

Build cross-compiled kernel debian package – Sysmic.org

Build cross-compiled kernel debian package Par Jérôme Pouiller le vendredi, octobre 29 2010, 09:37 – Lien permanent As you may know, you have juste to add options ARCH and if necessary CROSS_COMPILE to command line: make ARCH=powerpc CROSS_COMPILE=ppc-linux-gnu- XXX_defconfig make ARCH=powerpc CROSS_COMPILE=ppc-linux-gnu- XImage My primary concern is to compile an x86 32bits kernel in 64bits …

Build cross-compiled kernel debian package – Sysmic.org Lire la suite »

Simple Script to Build Linux .deb Package Using make-kpkg, distcc, and ccache

Run this script in the top level linux kernel source directory tree: #!/bin/sh export DISTCC_HOSTS="localhost 192.168.1.1 192.168.1.10" export CCACHE_PREFIX="distcc" export PATH="/usr/lib/ccache:$PATH" export CONCURRENCY_LEVEL=10 BUILD_NICE="nice -19" BUILD_TIME="/usr/bin/time" BUILD_MAKE="make-kpkg –rootcmd fakeroot –append-to-version -mykernel-$(hostname) –revision $(date +'%Y%m%d%H%M')" BUILD_CLEAN="clean" BUILD_TARGET="kernel_image kernel_headers modules_image" $BUILD_NICE $BUILD_TIME $BUILD_MAKE $BUILD_CLEAN && $BUILD_NICE $BUILD_TIME $BUILD_MAKE $BUILD_TARGET viaSimple Script to Build Linux .deb Package Using …

Simple Script to Build Linux .deb Package Using make-kpkg, distcc, and ccache Lire la suite »

Retour en haut