
Receipt for package "linux"
# SliTaz package receipt. PACKAGE="linux" VERSION="5.10.235" CATEGORY="base-system" SHORT_DESC="The Linux kernel and modules." MAINTAINER="devel@slitaz.org" LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.xz" WEB_SITE="https://www.kernel.org/" WGET_URL="https://cdn.kernel.org/pub/linux/kernel/v${VERSION%%.*}.x/$TARBALL" HOST_ARCH="i486 arm x86_64" DEPENDS="kmod" BUILD_DEPENDS="bash perl git xz lzma patch kmod bc findutils diffutils \ sysfsutils-dev elfutils-dev libtool glib-dev libwrap-dev openssl-dev \ udev-dev autoconf automake" # # The Linux receipt handle cross compilation. For x86_64 we actually use # the uclibc-cross-compiler-x86_64 and for ARM we use a real cross env. # Please discuss any change and keep it simple, dont play with VERSION # string or Kernel SUBLEVEL because depmod and Pankso dont like that! # # The receipt also handle some cook options for faster build: # --nox32 : skip the x86 compilation # --nox64 : skip the x86_64 cross compilation # --nopae : skip the PAE compilation # --nonomods : skip bzImage without modules build # # Aufs enable chroot #AUFS_NOT_RAMFS="uclibc-cross-compiler-x86_64 is not compatible with aufs+tmpfs 8(" current_version() { wget -O - $WEB_SITE 2> /dev/null | grep -A 1 longterm | \ sed '/strong/!d;s|.*<strong>||;s|</s.*||;q' } # Handle multiarch compilation. Less bdeps when cross-compiling for ARM case "$ARCH" in arm) BUILD_DEPENDS="xz" ;; #x86_64) BUILD_DEPENDS="xz" ;; esac # Handle multiarch installation. ARM use Busybox modutils, so avoid any # deps on kmod. SLITAZ_ARCH can have also custom post_install commands if [ -f $root/etc/slitaz/slitaz.conf ]; then . $root/etc/slitaz/slitaz.conf case "$SLITAZ_ARCH" in arm) DEPENDS="" ;; esac fi install_module_headers() { local path path=usr/src/linux-$KVERSION mkdir -p $1/lib/modules/$KVERSION ln -sf /$path $1/lib/modules/$KVERSION/build install -D -m644 $src/Makefile \ $1/$path/Makefile install -D -m644 $src/kernel/Makefile \ $1/$path/kernel/Makefile install -D -m644 $src/.config \ $1/$path/.config mkdir -p $1/$path/include cp -a $src/include/* $1/$path/include/ rm -f $1/$path/include/Kbuild # copy arch includes for external modules mkdir -p $1/$path/arch/x86 cp -a $src/arch/x86/include $1/$path/arch/x86/ # copy files necessary for later builds, like nvidia and vmware cp -a $src/Module.symvers $1/$path/Module.symvers cp -a $src/scripts $1/$path # fix permissions on scripts dir chmod og-w -R $1/$path/scripts mkdir -p $1/$path/.tmp_versions mkdir -p $1/$path/arch/x86/kernel cp -a $src/arch/x86/Makefile $1/$path/arch/x86/ cp -a $src/arch/x86/Makefile_32.cpu $1/$path/arch/x86/ cp -a $src/arch/x86/kernel/asm-offsets.s $1/$path/arch/x86/kernel/ # add headers for lirc package mkdir -p $1/$path/drivers/media ( cd $src/drivers/media ; find i2c -name '*.h' | cpio -o -H newc ) | \ ( cd $1/$path/drivers/media ; cpio -idmu ) # add dm headers mkdir -p $1/$path/drivers/md cp -a $src/drivers/md/*.h $1/$path/drivers/md # add inotify.h mkdir -p $1/$path/include/linux cp -a $src/include/linux/inotify.h $1/$path/include/linux/ # add wireless headers mkdir -p $1/$path/net/mac80211/ cp -a $src/net/mac80211/*.h $1/$path/net/mac80211/ # add dvb headers for external modules # in reference to: # http://bugs.archlinux.org/task/9912 #mkdir -p $1/$path/drivers/media/dvb-core #cp -a $src/drivers/media/dvb-core/*.h $1/$path/drivers/media/dvb-core/ # add dvb headers for external modules # in reference to: # http://bugs.archlinux.org/task/11194 if [ -d $src/include/config/dvb/ ]; then mkdir -p $1/$path/include/config/dvb/ cp $src/include/config/dvb/*.h $1/$path/include/config/dvb/ fi # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new # in reference to: # http://bugs.archlinux.org/task/13146 mkdir -p $1/$path/drivers/media/dvb-frontends/ cp -a $src/drivers/media/dvb-frontends/lgdt330x.h $1/$path/drivers/media/dvb-frontends/ cp -a $src/drivers/media/i2c/msp3400-driver.h $1/$path/drivers/media/dvb-frontends/ # add dvb headers # in reference to: # http://bugs.archlinux.org/task/20402 mkdir -p $1/$path/drivers/media/usb/dvb-usb cp -a $src/drivers/media/usb/dvb-usb/*.h $1/$path/drivers/media/usb/dvb-usb/ mkdir -p $1/$path/drivers/media/dvb-frontends cp -a $src/drivers/media/dvb-frontends/*.h $1/$path/drivers/media/dvb-frontends/ mkdir -p $1/$path/drivers/media/tuners cp -a $src/drivers/media/tuners/*.h $1/$path/drivers/media/tuners/ mkdir -p $1/$path/fs cp -a $src/fs/*.h $1/$path/fs/ # copy in Kconfig files for i in $(find . -name "Kconfig*"); do mkdir -p $1/$path/$(echo $i | sed 's|/Kconfig.*||') cp -a $src/$i $1/$path/$i done chown -R root.root $1/$path find $1/$path -type d -exec chmod 755 {} \; # remove unneeded architectures rm -rf $1/$path/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa} } # Rules to configure and make the package. compile_rules() { if [ -f "/usr/share/boot/initrd" ]; then cp /usr/share/boot/initrd initrd.cpio fi # Handle cross compilation case "$ARCH" in arm) echo "Compiling: $ARCH Kernel" make mrproper patch -Np1 < $stuff/$ARCH/linux-arm.patch || exit 1 cp -f $stuff/$ARCH/linux-arm.config .config yes '' | make ARCH=$ARCH oldconfig make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- bzImage && make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- modules && make ARCH=$ARCH CROSS_COMPILE=${HOST_SYSTEM}- \ INSTALL_MOD_PATH=$DESTDIR modules_install && mkdir -p $DESTDIR/boot && cp -a arch/arm/boot/zImage \ $DESTDIR/boot/linux-$VERSION-slitaz-$ARCH #$stuff/gztazmod.sh $DESTDIR/lib/modules/$VERSION-slitaz return 0 ;; x86_64_cross) echo "TODO: Maybe use default ? But cross compile in x86_64 chroot" echo "so we can remove the 64 build by uclibc-cross-compiler-x86_64" return 0 ;; esac echo "cook:linux" > $command # SliTaz db stuff [ -d $WOK/$PACKAGE/source/slitaz ] && rm -rf $WOK/$PACKAGE/source/slitaz mkdir -p $WOK/$PACKAGE/source/slitaz echo "$WGET_URL" > $WOK/$PACKAGE/source/slitaz/url cp $stuff/gztazmod.sh $stuff/list_modules.sh $WOK/$PACKAGE/source/slitaz cp $stuff/bootloader.sh $WOK/$PACKAGE/source/slitaz # Apply patches echo "Applying patches..." while read patch_file; do echo "$patch_file" >> $WOK/$PACKAGE/source/slitaz/patches cp $stuff/$patch_file $WOK/$PACKAGE/source/slitaz if [ -f done.$patch_file ]; then echo "Skipping $patch_file" && continue fi echo "Apply $patch_file" patch -p1 < $WOK/$PACKAGE/source/slitaz/$patch_file || return 1 touch done.$patch_file done <<EOT EOT # Patch for 3.16.55, need tweak for 4.x #$PACKAGE-diff.u #$PACKAGE-freeinitrd.u #$PACKAGE-subroot.u #$PACKAGE-romfs.u #$PACKAGE-tcp_stealth.u #$PACKAGE-efi.u # Patch for GCC > 6.x # usbip (format overflow / implicit-fallthrough) # kernel (format overflow) #patch -p1 < $stuff/linux-usbip-fix-format-overflow-gcc8.patch #patch -p1 < $stuff/linux-usbip-fix-implicit-fallthrough-gcc8.patch #patch -p1 < $stuff/linux-fix-format-overflow-gcc8.patch #patch -p1 < $stuff/linux-fix-noreturn-attributes-gcc8.patch # Patch for Picasso AMDGPU, until switch to 5.x # see https://bugs.gentoo.org/696164 #patch -p1 < $stuff/picasso-amdgpu.patch # Patch for rtw88 until switch to >= 5.16 # thanks for realtek patch and mageia bugtracker to found commit/patch :) # see https://bugs.mageia.org/show_bug.cgi?id=30199 # see https://patchwork.kernel.org/project/linux-wireless/patch/20210202055012.8296-4-pkshih@realtek.com/#23945151 patch -p1 < $stuff/net-wireless-rtw88-8821c-correct-CCK-RSSI.patch patch -p1 < $stuff/net-wireless-rtw88-8821c-support-RFE-type2-wifi-NIC.patch patch -p1 < $stuff/net-wireless-rtw88-8821c-support-RFE-type4-wifi-NIC.patch # Mrproper echo "Make kernel proper..." make mrproper echo "Build usbip..." cd $src/tools/usb/usbip ./autogen.sh ./configure CFLAGS="$CFLAGS -Wno-error=uninitialized" \ --with-usbids-dir=/usr/share/misc \ --mandir=/usr/share/man $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR/usbip install || return 1 cd $src # On x86_64, exclude 32 bits and pae builds case $SLITAZ_ARCH in x86_64) nox32="yes" nopae="yes" ;; esac # # Arch x86_64: TODO have a real cross environment # if [ ! "$nox64" ]; then echo "Compiling: x86_64 Kernel" # Use cross toolchain x86_64 export PATH=$PATH:/cross/x86_64/tools/bin # Build bzImage64 without modules first if [ ! "$nonomods" ]; then [ -d $DESTDIR/linux64 ] || mkdir -p $DESTDIR/linux64 || return 1 cp -f $stuff/$PACKAGE-slitaz.config64 .config sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config echo -e "\n* Configure bzImage64 without modules...\n" yes '' | make ARCH=x86_64 CROSS_COMPILE=x86_64-slitaz-linux- oldconfig echo -e "\n* Building bzImage64 without modules...\n" make ARCH=x86_64 CROSS_COMPILE=x86_64-slitaz-linux- bzImage || exit 1 mv arch/x86/boot/bzImage $DESTDIR/linux64 mv System.map System.map-without-modules64 mv vmlinux vmlinux-without-modules64 mv .config config-without-modules64 fi # Build bzImage64 with modules cp -f $stuff/$PACKAGE-slitaz.config64 .config echo -e "\n* Configure bzImage64 with modules...\n" yes '' | make ARCH=x86_64 CROSS_COMPILE=x86_64-slitaz-linux- oldconfig echo -e "\n* Building bzImage64 with modules...\n" make ARCH=x86_64 CROSS_COMPILE=x86_64-slitaz-linux- bzImage && make ARCH=x86_64 CROSS_COMPILE=x86_64-slitaz-linux- modules && make ARCH=x86_64 INSTALL_MOD_PATH=$DESTDIR/linux64 modules_install && make ARCH=x86_64 INSTALL_HDR_PATH=$DESTDIR/linux64/usr headers_install && ln .config $WOK/$PACKAGE/source/slitaz/config64 [ -s arch/x86/boot/bzImage ] || return 1 mkdir -p $DESTDIR/linux64/boot 2> /dev/null mv arch/x86/boot/bzImage $DESTDIR/linux64/boot/vmlinuz-$VERSION-slitaz64 KVERSION=$VERSION-slitaz64 install_module_headers $DESTDIR/linux64 if [ -d "$DESTDIR/linux64/lib/modules/$VERSION-slitaz64" ]; then $stuff/gztazmod.sh $DESTDIR/linux64/lib/modules/$VERSION-slitaz64 fi ln System.map System.map-modules64 ln vmlinux vmlinux-modules64 ln Module.symvers Module.symvers-modules64 cp .config config-modules64 else echo "* Skipping: x86_64 Kernel..." fi # # Linux Arch i386 - GCC arch i486 # if [ ! "$nox32" ]; then echo "Compiling: i386 Kernel..." # Build bzImage without modules first if [ ! "$nonomods" ]; then cp -f $stuff/$PACKAGE-slitaz.config .config sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config echo -e "\n* Configure bzImage without modules...\n" yes '' | make ARCH=i386 oldconfig echo -e "\n* Building bzImage without modules...\n" make ARCH=i386 bzImage || exit 1 [ -d $DESTDIR ] || mkdir -p $DESTDIR mv arch/x86/boot/bzImage $DESTDIR mv System.map System.map-without-modules mv vmlinux vmlinux-without-modules mv .config config-without-modules fi # Build bzImage with modules cp -f $stuff/$PACKAGE-slitaz.config .config echo -e "\n* Configure bzImage with modules...\n" yes '' | make ARCH=i386 oldconfig ln .config $WOK/$PACKAGE/source/slitaz/config echo -e "\n* Building bzImage with modules...\n" make ARCH=i386 bzImage && make ARCH=i386 modules && make ARCH=i386 INSTALL_MOD_PATH=$DESTDIR modules_install && make ARCH=i386 INSTALL_HDR_PATH=$DESTDIR/usr headers_install && [ -s arch/x86/boot/bzImage ] || return 1 mkdir -p $DESTDIR/boot 2> /dev/null mv arch/x86/boot/bzImage $DESTDIR/boot/vmlinuz-$VERSION-slitaz KVERSION=$VERSION-slitaz install_module_headers $DESTDIR # Compress all modules. if [ -d "$DESTDIR/lib/modules/$VERSION-slitaz" ]; then $stuff/gztazmod.sh $DESTDIR/lib/modules/$VERSION-slitaz else return 1 fi ln System.map System.map-modules ln vmlinux vmlinux-modules ln Module.symvers Module.symvers-modules cp .config config-modules else echo "* Skipping: x86 Kernel..." fi # # Linux Arch i386 - GCC arch i486 - PAE # if [ ! "$nopae" ]; then echo "Compiling: PAE Kernel..." # Build PAE bzImage without modules first if [ ! "$nonomods" ]; then [ -d $DESTDIR/linux-pae ] || mkdir -p $DESTDIR/linux-pae || return 1 cp -f $stuff/$PACKAGE-slitaz-pae.config .config sed -i 's/CONFIG_MODULES=y/# CONFIG_MODULES is not set/' .config echo -e "\n* Configure bzImage PAE without modules...\n" yes '' | make ARCH=i386 oldconfig echo -e "\n* Building bzImage PAE without modules...\n" make ARCH=i386 bzImage || exit 1 mv arch/x86/boot/bzImage $DESTDIR/linux-pae mv System.map System.map-without-modules-pae mv vmlinux vmlinux-without-modules-pae mv .config config-without-modules-pae fi # Build PAE bzImage with modules cp -f $stuff/$PACKAGE-slitaz-pae.config .config echo -e "\n* Configure bzImage PAE with modules...\n" yes '' | make ARCH=i386 oldconfig echo -e "\n* Building bzImage PAE with modules...\n" make ARCH=i386 bzImage && make ARCH=i386 modules && make ARCH=i386 INSTALL_MOD_PATH=$DESTDIR/linux-pae modules_install && make ARCH=i386 INSTALL_HDR_PATH=$DESTDIR/linux-pae/usr headers_install && ln .config $WOK/$PACKAGE/source/slitaz/configpae [ -s arch/x86/boot/bzImage ] || return 1 mkdir -p $DESTDIR/linux-pae/boot 2> /dev/null mv arch/x86/boot/bzImage $DESTDIR/linux-pae/boot/vmlinuz-$VERSION-slitaz-pae KVERSION=$VERSION-slitaz-pae install_module_headers $DESTDIR/linux-pae # Compress all modules. if [ -d "$DESTDIR/linux-pae/lib/modules/$VERSION-slitaz-pae" ]; then $stuff/gztazmod.sh $DESTDIR/linux-pae/lib/modules/$VERSION-slitaz-pae else return 1 fi ln System.map System.map-modules-pae ln vmlinux vmlinux-modules-pae ln Module.symvers Module.symvers-modules-pae cp .config config-modules-pae else echo "* Skipping: x86 PAE Kernel..." fi } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { case "$ARCH" in arm) echo "Packing: ARM Kernel" cp -a $install/* $fs rm -f $fs/lib/modules/*/build $fs/lib/modules/*/source return 0 ;; x86_64_cross) echo "TODO: use default or custom x86_64 packing" return 0 ;; esac export PACKAGE VERSION local path cp -a $install/boot $fs # Compress all modules. path=$fs/lib/modules/$VERSION-slitaz/kernel mkdir -p $path # Get the base modules export src install mkdir -p $WOK/$PACKAGE/source/tmp # Warning stuff/list_modules.sh must find the generated modules.list $stuff/list_modules.sh \ $(cat $stuff/modules.list) > $WOK/$PACKAGE/source/tmp/modules.list while read module; do dir=$(dirname $module) [ -d $path/$dir ] || mkdir -p $path/$dir cp -a $install/lib/modules/$VERSION-slitaz/kernel/$module $path/$dir done < $WOK/$PACKAGE/source/tmp/modules.list # Remove unresolved links rm -f $fs/lib/modules/$VERSION-slitaz/build rm -f $fs/lib/modules/$VERSION-slitaz/source # We only need module.{order,builtin} because other map files are # generated by depmod in post_install cp -a $install/lib/modules/$VERSION-slitaz/modules.order \ $install/lib/modules/$VERSION-slitaz/modules.builtin \ $fs/lib/modules/$VERSION-slitaz # Pack all packages with a kernel module sed -i "/^$PACKAGE\$/d" $CACHE/broken 2>/dev/null || true for i in $(cd $WOK; grep -l '^WANTED="linux"' */receipt); do [ ! -d "$install/lib/modules/$VERSION-slitaz" ] && return 1 cook ${i%/receipt} done # Check any module in kernel .config that's not added to a linux-* pkgs # and remove aufs patches: we dont need them in HG wok. $stuff/check_modules.sh # Keep fixed patches ! #rm -f $stuff/aufs3-* } # Pre and post install commands for Tazpkg. post_install() { chroot "$root/" depmod -a $VERSION-slitaz # Handle multiarch installation case "$SLITAZ_ARCH" in arm) echo "Kernel : /boot/linux-$VERSION-slitaz-$ARCH" echo "Modules: /lib/modules/$VERSION-slitaz" return 0 ;; esac # GRUB stuff. if [ -f "$1/boot/grub/menu.lst" ]; then # Current root device root_dev="/dev/$(lsblk | grep '/$'| grep -o '[a-z]d[a-z][0-9]*')" grub_part="$(( $(echo $root_dev | grep -o '[0-9]*$')-1 ))" # Use device.map to find grub device number grub_dev="$(grep $(echo $root_dev | grep -o '^/dev/.d.' ) \ "$1/boot/grub/device.map" | cut -f1 | sed "s/)$/.$grub_part)/g")" # Add and clean kernel entries in case of upgrade for installed system. if ! grep -q vmlinuz-$VERSION-slitaz "$1/boot/grub/menu.lst"; then # Clean the old entry # TODO: old vmlinuz file is removed but the entry is still there. # So grub error:15 when selected: http://bugs.slitaz.org/?id=74 # Add the new entry cat >> "$1/boot/grub/menu.lst" << EOT title SliTaz GNU/Linux (Kernel $VERSION-slitaz) $grub_dev kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev quiet EOT # Make it the default entry last_entry=$(( $(grep -c '^title' "$1/boot/grub/menu.lst")-1 )) sed -e "s/^default.*/default $last_entry/g" -i "$1/boot/grub/menu.lst" fi # Display information message. cat <<EOT ---- GRUB is installed, these tree lines must be in your /boot/grub/menu.lst: title SliTaz GNU/Linux (Kernel $VERSION-slitaz) $grub_dev kernel /boot/vmlinuz-$VERSION-slitaz root=$root_dev ---- EOT fi true }
6091 packages and 256114 files in 4.0 database (Thu Apr 3 00:00:04 2025)