![]() |
![]() ![]() ![]() ![]() ![]() |
71 versions of Linux.
Program | Age | Size | By | WWW | Summary | |
Linux 4.13.2-r1 | 807 | 88794 | Luca... | www |
The Linux Kernel. | |
Linux 4.9.16-r3 | 978 | 100651 | Luca... | www |
The Linux Kernel. | |
Linux 4.9.4-r5 | 1034 | 99374 | Luca... | www |
The Linux Kernel. | |
Linux 4.8.2-r2 | 1100 | 89394 | Luca... | www |
The Linux Kernel. | |
Linux 4.7.4-r1 | 1170 | 82767 | Luca... | www |
The Linux Kernel. | |
Linux 4.7.0-r4 | 1225 | 82585 | Luca... | www |
The Linux Kernel. | |
Linux 3.13.3-r1 | 2105 | 252629 | Luca... | www |
The Linux Kernel. | |
Linux 3.12.6-r1 | 2165 | 238949 | Luca... | www |
The Linux Kernel. | |
Linux 3.9.4-r2 | 2360 | 70048 | Luca... | www |
The Linux Kernel. | |
Linux 3.7.1-r2 | 2533 | 67579 | Luca... | www |
The Linux Kernel. | |
Linux 3.5.0-r1 | 2684 | 124391 | Luca... | www |
The Linux Kernel. | |
Linux 3.4.4-r1 | 2684 | 124348 | Luca... | www |
The Linux Kernel. | |
Linux 3.3.6-r1 | 2684 | 124410 | Luca... | www |
The Linux Kernel. | |
Linux 3.2.12-r2 | 2812 | 124345 | Luca... | www |
The Linux Kernel. | |
Linux 3.2.7-r1 | 2842 | 123550 | Mich... | www |
The Linux Kernel. | |
Linux 3.1.1-r1 | 2947 | 122907 | Mich... | www |
The Linux Kernel. | |
Linux 3.0.4-r4 | 3008 | 122754 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.36.3-r1 | 3231 | 116087 | Diog... | www |
The Linux Kernel. | |
Linux 2.6.32.3-r1 | 3609 | 117990 | Luca... | www |
The Linux Kernel. | |
view entry at GitHub | download recipe.bz2 file | ||||||
01-gobohide.patch 02-unionfs-2.5.3_for_2.6.32-pre.patch 03-applesmc-accel-create-check.patch 04-appletouch.patch Recipe Resources/BuildDependencies Resources/BuildInformation Resources/Dependencies Resources/Description cell/02-memcpy-cell.patch cell/Recipe cell/dot-config i686/Recipe i686/dot-config ppc/Recipe ppc/dot-config x86_64/Recipe x86_64/dot-config # Recipe for version 2.6.32.3.3 by Lucas C. Villa Real, on Wed Jan 13 18:59:11 BRST \ 2010 compile_version=1.8.5 url="http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.32.3.tar.bz2" file_size=64385048 file_md5=730045c2c7f7e6618db3c4d4d7094853 recipe_type=makefile build_target="all" install_target="modules_install" install_variables=( # INSTALL_MOD_PATH="$target/Resources/Unmanaged" MODLIB="${target}/Resources/Unmanaged/${goboModules}/${version}-Gobo" INSTALL_FW_PATH="$target/lib/firmware" DEPMOD="true" ) # While lib/modules is unmanaged as well that is manually added to the # UnmanagedFiles file in pre_link() unmanaged_files=( $goboBoot/ ) do_configuration() { if [ ! -f .config ] then if [ ! -f $goboStatus/config.gz ] then cp "$archsubdir"/dot-config .config else if Ask "Do you want to use a configuration based on the one from the running \ kernel?" then zcat $goboStatus/config.gz > .config yes "" | make oldconfig else Log_Normal "Using the kernel configuration shipped with the recipe" cp "$archsubdir"/dot-config .config fi fi fi GrepReplace "\$(INSTALL_MOD_PATH)/lib/modules/\$(KERNELRELEASE)" \ "$target/Resources/Unmanaged/$goboModules/\$(KERNELRELEASE)" \ Makefile >& /dev/null # Sanity check to make sure patches are not trying to mess with the version id. local v=`grep "^VERSION =" Makefile | awk '{print $3}'` local p=`grep "^PATCHLEVEL" Makefile | awk '{print $3}'` local s=`grep "^SUBLEVEL" Makefile | awk '{print $3}'` local e=`grep "^EXTRAVERSION" Makefile | awk '{print $3}'` local reported="$v.$p.$s$e" if [ "$reported" != "$version" ] then Die "Reported version ($reported) does not match version ($version). Please \ fix recipe." fi make menuconfig || Die "'menuconfig' failed." [ -z "${SUDO_USER}" ] || chown ${SUDO_USER} -R include/config .config } pre_link() { local simpleversion=`private__calculate_version` local fullversion=`private__calculate_full_version` # Copy arch-dependent results to the destination private__copy_kernel_image # Copy sanitized sources to $target/lib/build private__copy_kernel_source $simpleversion Log_Normal "Calculating kernel module dependencies..." depmod -b $target/Resources/Unmanaged ${version}-Gobo # Create System.map and kernel symlinks private__link_at_system_kernel_boot $simpleversion $fullversion # Add lib/modules to UnmanagedFiles echo ${goboModules}/Current >> ${target}/Resources/UnmanagedFiles echo $goboModules/${version}-Gobo/ >> ${target}/Resources/UnmanagedFiles } private__calculate_version() { if grep -q "^CONFIG_LOCALVERSION=" .config then suffix=`grep "^CONFIG_LOCALVERSION=" .config | cut -d= -f2 | tr -d '"' | \ sed 's/-[0-9]*-//'` fi echo "$version$suffix" } private__calculate_full_version() { local simpleversion=`private__calculate_version` local newsuffix="" local count=`ls $goboBoot/kernel-$version-* 2> /dev/null | sort -n | wc -l | awk \ '{print $1}'` if [ "$count" -gt "0" ] then let count=$count+1 newsuffix="-$count" fi echo "$simpleversion$newsuffix" } private__copy_kernel_source() { simpleversion="$1" rm -f "${target}/Resources/Unmanaged/${goboModules}/${simpleversion}"/{source,build} # Remove links created by 'make module-install' [ -f "${goboModules}/${simpleversion}/build" ] && rm -f "${goboModules}/${simpleversion}/build" [ -f "${goboModules}/${simpleversion}/source" ] && rm -f "${goboModules}/${simpleversion}/source" # Copy sanitized sources to Resources/Unmanaged/Files/Compile/Sources/linux-<version> dest="${target}/lib/modules/${simpleversion}/build" mkdir -p $dest ln -s build "${target}/lib/modules/${simpleversion}/source" Log_Normal "Creating a working copy of the kernel sources tree..." Quiet pushd $dir cp .version .config System.map Module.symvers Makefile Kbuild $dest/ for i in * do if [ -d $i -a $i = "scripts" ] then cp -a $i $dest/ elif [ -d $i ] then dirlist=`find $i -type d` filelist=`find $i \( \ -name "*.h" -or \ -name ".conf" -or \ -name "Makefile*" -or \ -name "Kconfig*" -or \ -name "Kbuild*" -or \ -name "asm-offsets.c" -or \ -name "asm-offsets_32.c" -or \ -name "asm-offsets_64.c" -or \ -name "bounds.c" \ \)` for dir in $dirlist do mkdir -p "$dest/$dir" done for file in $filelist do cp "$file" "$dest/$file" done for dir in $dirlist do find "$dir" -type d | sort -r | xargs rmdir 2> /dev/null done fi done Quiet popd Quiet pushd $dest make prepare Quiet popd } private__link_at_system_kernel_boot() { local simpleversion="$1" local fullversion="$2" mkdir -p $target/lib/modules mkdir -p $target/Resources/Unmanaged/$goboModules dest=$target/Resources/Unmanaged/$goboBoot ln -s kernel-$fullversion $dest/kernel ln -s System.map-$fullversion $dest/System.map rm -rf $goboModules/Current $goboModules/$fullversion rm -rf $target/Resources/Unmanaged/$goboModules/Current ln -s $simpleversion $target/Resources/Unmanaged/$goboModules/Current ln -s ${target}/lib/modules/${simpleversion}/{source,build} $target/Resources/Unmanaged/$goboModules/$simpleversion/ for x in $goboModules/$simpleversion/* do bn=`basename $x` if ! [ -e "$target/lib/modules/$simpleversion/$bn" ] then ln -s $x $target/lib/modules/${simpleversion}/$bn fi done } | ||||||
Linux 2.6.32-r1 | 3650 | 117751 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.31.6-r3 | 3655 | 126499 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.30.5-r1 | 3734 | 166102 | Jona... | www |
The Linux Kernel. | |
Linux 2.6.29.1-r1 | 3877 | 117500 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.28.7-r1 | 3933 | 115518 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.28.1-r1 | 3933 | 115487 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.28-r1 | 3933 | 116681 | Mich... | www |
The Linux Kernel. | |
Linux 2.6.27.8-r1 | 3933 | 134160 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.27.4-r3 | 3933 | 149529 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.25.17-r1 | 3933 | 172834 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.25.16-r1 | 3933 | 166500 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.25.10-r2 | 3933 | 165320 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.25.7-r1 | 3933 | 157294 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.25.4-r1 | 3933 | 133017 | Hopp... | www |
The Linux Kernel. | |
Linux 2.6.25-r1 | 3933 | 133216 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.24.4-r5 | 3933 | 150733 | www |
The Linux Kernel. | ||
Linux 2.6.24.3-r5 | 3933 | 150221 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.24.2-r3 | 3933 | 146488 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.24.1-r1 | 3933 | 146454 | Giam... | www |
The Linux Kernel. | |
Linux 2.6.24-r1 | 3933 | 146428 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.23.8-r4 | 3933 | 155842 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.22.7-r4 | 3933 | 114727 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.22.1-r1 | 3933 | 121391 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.21.1-r3 | 3933 | 118854 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.20.7-r1 | 3933 | 117945 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.20.4-r3 | 3933 | 151150 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.20-r1 | 3933 | 106429 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.18.3-r2 | 3933 | 111124 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.17.11-r1 | 3933 | 164053 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.17.3-r1 | 3933 | 165067 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.16.20-r1 | 3933 | 133625 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.16.14-r1 | 3933 | 168270 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.15.5-r1 | 3933 | 224686 | Jona... | www |
The Linux Kernel. | |
Linux 2.6.15.2-r1 | 3933 | 177165 | Carl... | www |
The Linux Kernel. | |
Linux 2.6.15.1-r1 | 3933 | 149219 | Jona... | www |
The Linux Kernel. | |
Linux 2.6.15-r1 | 3933 | 149214 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.14.4-r1 | 3933 | 150166 | Jona... | www |
The Linux Kernel. | |
Linux 2.6.14.3-r1 | 3933 | 150060 | Jona... | www |
The Linux Kernel. | |
Linux 2.6.14.2-r1 | 3933 | 149791 | Carl... | www |
The Linux Kernel. | |
Linux 2.6.13.4-r1 | 3933 | 149559 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.13.2-r1 | 3933 | 56611 | Jona... | www |
The Linux Kernel. | |
Linux 2.6.13.1-r1 | 3933 | 56378 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.12.2-r1 | 3933 | 50355 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.11.9-r1 | 3933 | 98969 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.11.8-r1 | 3933 | 109424 | Jona... | www |
The Linux Kernel. | |
Linux 2.6.11-r1 | 3933 | 99032 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.10-r1 | 3933 | 65969 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.9-r1 | 3933 | 278461 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.8.1-r1 | 3933 | 35576 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.7-r1 | 3933 | 22610 | Luca... | www |
The Linux Kernel. | |
Linux 2.6.6-r1 | 3933 | 21958 | Luca... | www |
The Linux Kernel. | |
Linux 2.4.26-r1 | 3933 | 22359 | Luca... | www |
The Linux Kernel. |