From ae4f1d3dfaf309e0cb95411fac1fe6f32075d6b3 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Mon, 24 Sep 2007 11:54:03 +0000 Subject: linux-ezx: add patches for a1200 flip switch and keys --- .../linux-ezx-2.6.21/patches/a1200-flip.patch | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch (limited to 'packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch') diff --git a/packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch b/packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch new file mode 100644 index 0000000000..15d87f7751 --- /dev/null +++ b/packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch @@ -0,0 +1,47 @@ +Index: linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c +=================================================================== +--- linux-2.6.21.orig/arch/arm/mach-pxa/ezx-a1200.c 2007-09-23 13:28:02.000000000 -0300 ++++ linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c 2007-09-23 13:31:40.000000000 -0300 +@@ -16,6 +16,7 @@ + #include + #include + #include ++#include + + #include + #include +@@ -343,11 +344,34 @@ + .num_resources = ARRAY_SIZE(pcap_ts_resources), + .resource = pcap_ts_resources, + }; ++/* Flip */ ++#undef GPIO_FLIP_PIN ++#define GPIO_FLIP_PIN 15 /* FIXME */ ++static struct gpio_keys_button a1200flip_buttons[] = { ++ [0] = { ++ .keycode = KEY_SLEEP, ++ .gpio = GPIO_FLIP_PIN, ++ .desc = "A1200 flip", ++ }, ++}; ++ ++static struct gpio_keys_platform_data a1200flip_platform_data = { ++ .buttons = a1200flip_buttons, ++ .nbuttons = 1, ++}; ++static struct platform_device a1200flip_device = { ++ .name = "gpio-keys", ++ .id = -1, ++ .dev = { ++ .platform_data = &a1200flip_platform_data, ++ }, ++}; + + static struct platform_device *devices[] __initdata = { + &a1200_pcap_device, + &a1200_eoc_device, + &pcap_ts_device, ++ &a1200flip_device, + }; + + static void __init a1200_init(void) -- cgit v1.2.3 From 805aaee5708afe12a543d86a53b500badcd18e0b Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Tue, 25 Sep 2007 18:30:12 +0000 Subject: linux-ezx: catch up with svn and unbreak booting by enabling ext2 --- packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch') diff --git a/packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch b/packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch index 15d87f7751..fc51773205 100644 --- a/packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch +++ b/packages/linux/linux-ezx-2.6.21/patches/a1200-flip.patch @@ -1,7 +1,7 @@ Index: linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c =================================================================== ---- linux-2.6.21.orig/arch/arm/mach-pxa/ezx-a1200.c 2007-09-23 13:28:02.000000000 -0300 -+++ linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c 2007-09-23 13:31:40.000000000 -0300 +--- linux-2.6.21.orig/arch/arm/mach-pxa/ezx-a1200.c 2007-09-25 02:00:53.000000000 -0300 ++++ linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c 2007-09-25 02:01:06.000000000 -0300 @@ -16,6 +16,7 @@ #include #include @@ -10,7 +10,7 @@ Index: linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c #include #include -@@ -343,11 +344,34 @@ +@@ -292,11 +293,34 @@ .num_resources = ARRAY_SIZE(pcap_ts_resources), .resource = pcap_ts_resources, }; -- cgit v1.2.3