Add kbd package
authorFelipe Contreras <felipe.contreras@gmail.com>
Sun, 19 Sep 2010 23:44:40 +0000 (02:44 +0300)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 7 Nov 2010 09:50:44 +0000 (10:50 +0100)
[Peter: use BR2_KERNEL_MIRROR]
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
CHANGES
package/Config.in
package/kbd/Config.in [new file with mode: 0644]
package/kbd/kdb.mk [new file with mode: 0644]

diff --git a/CHANGES b/CHANGES
index 45ed7cbe0fa67b7a47ec3539cbe8021515846cc4..1be748b6afb5496e32adb12f3218658b3625dd67 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -25,7 +25,7 @@
        Alpha, Cris, IA64 and Sparc64 architecture support removed.
 
        New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
-       libmpeg2, librsvg, nuttcp, rng-tools, rrdtool, xz
+       libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
 
        Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
        automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
index 7b35554dfb8f025805c85c533ed8a3b49a140367..03e580ae86fdadab5a8452a4bc66059ea583e812 100644 (file)
@@ -173,6 +173,7 @@ source "package/hwdata/Config.in"
 source "package/i2c-tools/Config.in"
 source "package/input-tools/Config.in"
 source "package/iostat/Config.in"
+source "package/kbd/Config.in"
 source "package/lm-sensors/Config.in"
 source "package/lvm2/Config.in"
 source "package/makedevs/Config.in"
diff --git a/package/kbd/Config.in b/package/kbd/Config.in
new file mode 100644 (file)
index 0000000..b6d13b5
--- /dev/null
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_KBD
+       bool "kbd"
+       help
+         Keytable files and keyboard utilities.
+
+         http://kernel.org/pub/linux/utils/kbd/
diff --git a/package/kbd/kdb.mk b/package/kbd/kdb.mk
new file mode 100644 (file)
index 0000000..526e1ff
--- /dev/null
@@ -0,0 +1,5 @@
+KBD_VERSION = 1.15.2
+KBD_SOURCE = kbd-$(KBD_VERSION).tar.gz
+KBD_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kbd
+
+$(eval $(call AUTOTARGETS,package,kbd))