wok rev 3316

Add linux-input-misc linux-input-tablet and linux-usb-misc (Thanks Matthew)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 08 01:17:20 2009 +0200 (2009-06-08)
parents fd373db64c59
children ecbe1dd88381
files linux-input-misc/receipt linux-input-tablet/receipt linux-usb-misc/receipt linux/stuff/linux-2.6.29.3-slitaz.config
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/linux-input-misc/receipt	Mon Jun 08 01:17:20 2009 +0200
     1.3 @@ -0,0 +1,37 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="linux-input-misc"
     1.7 +VERSION="2.6.29.3"
     1.8 +CATEGORY="base-system"
     1.9 +SHORT_DESC="The Linux kernel misc. input drivers, including the ATI RemoteWonders."
    1.10 +MAINTAINER="rcx@zoominternet.net"
    1.11 +WANTED="linux"
    1.12 +WEB_SITE="http://www.kernel.org/"
    1.13 +
    1.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.15 +genpkg_rules()
    1.16 +{
    1.17 +    local path
    1.18 +    path=lib/modules/$VERSION-slitaz/kernel
    1.19 +    mkdir -p $fs/$path
    1.20 +    export src
    1.21 +    export _pkg
    1.22 +    $src/list_modules.sh drivers/input/misc | while read module; do
    1.23 +    	dir=$path/$(dirname $module)
    1.24 +    	[ -d $fs/$dir ] || mkdir -p $fs/$dir
    1.25 +        cp -a $_pkg/$path/$module $fs/$dir
    1.26 +    done
    1.27 +
    1.28 +}
    1.29 +
    1.30 +# Post install/remove commands for Tazpkg.
    1.31 +post_install()
    1.32 +{
    1.33 +	chroot "$1/" depmod -a $VERSION-slitaz
    1.34 +}
    1.35 +
    1.36 +post_remove()
    1.37 +{
    1.38 +	depmod -a $VERSION-slitaz
    1.39 +}
    1.40 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/linux-input-tablet/receipt	Mon Jun 08 01:17:20 2009 +0200
     2.3 @@ -0,0 +1,37 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="linux-input-tablet"
     2.7 +VERSION="2.6.29.3"
     2.8 +CATEGORY="base-system"
     2.9 +SHORT_DESC="The Linux kernel tablet input drivers."
    2.10 +MAINTAINER="rcx@zoominternet.net"
    2.11 +WANTED="linux"
    2.12 +WEB_SITE="http://www.kernel.org/"
    2.13 +
    2.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.15 +genpkg_rules()
    2.16 +{
    2.17 +    local path
    2.18 +    path=lib/modules/$VERSION-slitaz/kernel
    2.19 +    mkdir -p $fs/$path
    2.20 +    export src
    2.21 +    export _pkg
    2.22 +    $src/list_modules.sh drivers/input/tablet | while read module; do
    2.23 +    	dir=$path/$(dirname $module)
    2.24 +    	[ -d $fs/$dir ] || mkdir -p $fs/$dir
    2.25 +        cp -a $_pkg/$path/$module $fs/$dir
    2.26 +    done
    2.27 +
    2.28 +}
    2.29 +
    2.30 +# Post install/remove commands for Tazpkg.
    2.31 +post_install()
    2.32 +{
    2.33 +	chroot "$1/" depmod -a $VERSION-slitaz
    2.34 +}
    2.35 +
    2.36 +post_remove()
    2.37 +{
    2.38 +	depmod -a $VERSION-slitaz
    2.39 +}
    2.40 +
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/linux-usb-misc/receipt	Mon Jun 08 01:17:20 2009 +0200
     3.3 @@ -0,0 +1,37 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="linux-usb-misc"
     3.7 +VERSION="2.6.29.3"
     3.8 +CATEGORY="base-system"
     3.9 +SHORT_DESC="The Linux kernel misc. USB drivers, including the Lego USB tower."
    3.10 +MAINTAINER="rcx@zoominternet.net"
    3.11 +WANTED="linux"
    3.12 +WEB_SITE="http://www.kernel.org/"
    3.13 +
    3.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.15 +genpkg_rules()
    3.16 +{
    3.17 +    local path
    3.18 +    path=lib/modules/$VERSION-slitaz/kernel
    3.19 +    mkdir -p $fs/$path
    3.20 +    export src
    3.21 +    export _pkg
    3.22 +    $src/list_modules.sh drivers/usb/misc | while read module; do
    3.23 +    	dir=$path/$(dirname $module)
    3.24 +    	[ -d $fs/$dir ] || mkdir -p $fs/$dir
    3.25 +        cp -a $_pkg/$path/$module $fs/$dir
    3.26 +    done
    3.27 +
    3.28 +}
    3.29 +
    3.30 +# Post install/remove commands for Tazpkg.
    3.31 +post_install()
    3.32 +{
    3.33 +	chroot "$1/" depmod -a $VERSION-slitaz
    3.34 +}
    3.35 +
    3.36 +post_remove()
    3.37 +{
    3.38 +	depmod -a $VERSION-slitaz
    3.39 +}
    3.40 +
     4.1 --- a/linux/stuff/linux-2.6.29.3-slitaz.config	Mon Jun 08 00:03:03 2009 +0200
     4.2 +++ b/linux/stuff/linux-2.6.29.3-slitaz.config	Mon Jun 08 01:17:20 2009 +0200
     4.3 @@ -1,7 +1,7 @@
     4.4  #
     4.5  # Automatically generated make config: don't edit
     4.6  # Linux kernel version: 2.6.29.3
     4.7 -# Sun May 24 17:25:23 2009
     4.8 +# Sun Jun  7 23:27:09 2009
     4.9  #
    4.10  # CONFIG_64BIT is not set
    4.11  CONFIG_X86_32=y
    4.12 @@ -1690,20 +1690,25 @@
    4.13  CONFIG_JOYSTICK_XPAD=m
    4.14  # CONFIG_JOYSTICK_XPAD_FF is not set
    4.15  # CONFIG_JOYSTICK_XPAD_LEDS is not set
    4.16 -# CONFIG_INPUT_TABLET is not set
    4.17 +CONFIG_INPUT_TABLET=y
    4.18 +# CONFIG_TABLET_USB_ACECAD is not set
    4.19 +# CONFIG_TABLET_USB_AIPTEK is not set
    4.20 +# CONFIG_TABLET_USB_GTCO is not set
    4.21 +# CONFIG_TABLET_USB_KBTAB is not set
    4.22 +CONFIG_TABLET_USB_WACOM=m
    4.23  # CONFIG_INPUT_TOUCHSCREEN is not set
    4.24  CONFIG_INPUT_MISC=y
    4.25  CONFIG_INPUT_PCSPKR=y
    4.26  # CONFIG_INPUT_APANEL is not set
    4.27  # CONFIG_INPUT_WISTRON_BTNS is not set
    4.28  # CONFIG_INPUT_ATLAS_BTNS is not set
    4.29 -# CONFIG_INPUT_ATI_REMOTE is not set
    4.30 -# CONFIG_INPUT_ATI_REMOTE2 is not set
    4.31 +CONFIG_INPUT_ATI_REMOTE=m
    4.32 +CONFIG_INPUT_ATI_REMOTE2=m
    4.33  # CONFIG_INPUT_KEYSPAN_REMOTE is not set
    4.34  # CONFIG_INPUT_POWERMATE is not set
    4.35  # CONFIG_INPUT_YEALINK is not set
    4.36  # CONFIG_INPUT_CM109 is not set
    4.37 -# CONFIG_INPUT_UINPUT is not set
    4.38 +CONFIG_INPUT_UINPUT=m
    4.39  
    4.40  #
    4.41  # Hardware I/O ports
    4.42 @@ -2640,7 +2645,7 @@
    4.43  # CONFIG_USB_ADUTUX is not set
    4.44  # CONFIG_USB_SEVSEG is not set
    4.45  # CONFIG_USB_RIO500 is not set
    4.46 -# CONFIG_USB_LEGOTOWER is not set
    4.47 +CONFIG_USB_LEGOTOWER=m
    4.48  # CONFIG_USB_LCD is not set
    4.49  # CONFIG_USB_BERRY_CHARGE is not set
    4.50  # CONFIG_USB_LED is not set