wok-current annotate linux-zram/receipt @ rev 21974
updated sshttp again (0-31s -> 0.35s2)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 11 14:17:22 2019 +0100 (2019-10-11) |
parents | 708b5293dd29 |
children | a1821e12e28a |
rev | line source |
---|---|
pascal@13390 | 1 # SliTaz package receipt. |
pascal@13390 | 2 |
pascal@13390 | 3 PACKAGE="linux-zram" |
pascal@20261 | 4 VERSION="3.16.55" |
pascal@13390 | 5 CATEGORY="base-system" |
pascal@13390 | 6 SHORT_DESC="Compressed caching" |
pascal@13390 | 7 MAINTAINER="devel@slitaz.org" |
pascal@14657 | 8 LICENSE="GPL2" |
pascal@20421 | 9 WEB_SITE="https://www.kernel.org/" |
pascal@18743 | 10 CONFIG_FILES="/etc/compcache.conf" |
pascal@13390 | 11 WANTED="linux" |
pascal@13390 | 12 PROVIDE="compcache" |
pascal@13390 | 13 |
pascal@13390 | 14 DEPENDS="linux" |
pascal@13390 | 15 |
pascal@13390 | 16 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13390 | 17 genpkg_rules() |
pascal@13390 | 18 { |
pascal@13390 | 19 local path |
pankso@15855 | 20 path=lib/modules/$VERSION-slitaz/kernel |
pascal@13390 | 21 mkdir -p $fs/$path $fs/etc/init.d |
pankso@15855 | 22 export src install |
pascal@20261 | 23 $wanted_stuff/list_modules.sh drivers/block/zram | \ |
pascal@13390 | 24 while read module; do |
pascal@13390 | 25 dir=$path/$(dirname $module) |
pascal@13390 | 26 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@15603 | 27 cp -a $install/$path/$module $fs/$dir |
pascal@13390 | 28 done |
pascal@13390 | 29 install -o root -m 755 $stuff/compcache $fs/etc/init.d/ |
pascal@13390 | 30 install -o root -m 644 $stuff/compcache.conf $fs/etc/ |
pascal@13390 | 31 } |
pascal@13390 | 32 |
pascal@13390 | 33 # Post install/remove commands for Tazpkg. |
pascal@13390 | 34 post_install() |
pascal@13390 | 35 { |
psychomaniak@16965 | 36 chroot "$root/" depmod -a $VERSION-slitaz && |
psychomaniak@16965 | 37 RAM=`cat /proc/meminfo | grep MemTotal | sed s/[^0-9]//g` && |
psychomaniak@16965 | 38 echo "SIZE_KB="$(($RAM/2)) > /etc/compcache.conf |
pascal@18743 | 39 cat <<EOT |
pascal@18745 | 40 |
pascal@18743 | 41 You can add compressed swap according /etc/compcache.conf configuration with: |
pascal@18743 | 42 # /etc/init.d/compcache start |
pascal@18743 | 43 Or add compcache in the RUN_DAEMONS list of /etc/rcS.conf. |
pascal@18743 | 44 EOT |
pascal@13390 | 45 } |
pascal@13390 | 46 |
pascal@13390 | 47 post_remove() |
pascal@13390 | 48 { |
pankso@15855 | 49 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@13390 | 50 } |
pascal@13390 | 51 |