summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2007-08-17 16:24:06 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2007-08-17 16:24:06 +0000
commita3674d15d5cc5ea30cbc5d5715f23539e21e8b97 (patch)
treec4346f8d85fbb5fc0956eecdd2caf4bdf25b2c14
parent57d9de9aaeb7f4c0d307ce3c64b0d91a5eb60e5b (diff)
parentdfafa94463e9c3e5afe61c78deb4decbabb0ad70 (diff)
merge of '4843e0d9b2f929adb80e40eaaaa3db435a7ff676'
and '6872bbed00f51ddc9c28ab65dae421c4b6751524'
-rw-r--r--packages/matchbox-keyboard/files/2-Add-new-modifier--layout--Used-to-cycle-thru-all-available-layouts.patch10
-rw-r--r--packages/matchbox-keyboard/files/3-Changes-to-improve-layout-rendering--especially-after-adding-support-for.patch73
-rw-r--r--packages/matchbox-keyboard/files/4-Add-rendering-debug-logging.patch8
-rw-r--r--packages/uboot/u-boot_1.1.2.bb2
-rw-r--r--packages/uboot/u-boot_1.1.4.bb2
-rw-r--r--packages/uboot/uboot-utils_1.2.0.bb2
6 files changed, 48 insertions, 49 deletions
diff --git a/packages/matchbox-keyboard/files/2-Add-new-modifier--layout--Used-to-cycle-thru-all-available-layouts.patch b/packages/matchbox-keyboard/files/2-Add-new-modifier--layout--Used-to-cycle-thru-all-available-layouts.patch
index 2d05e5d652..8aae3a0203 100644
--- a/packages/matchbox-keyboard/files/2-Add-new-modifier--layout--Used-to-cycle-thru-all-available-layouts.patch
+++ b/packages/matchbox-keyboard/files/2-Add-new-modifier--layout--Used-to-cycle-thru-all-available-layouts.patch
@@ -71,15 +71,15 @@ diff -r 96305d94eb31 -r ff9cf1fd8177 src/matchbox-keyboard.c
diff -r 96305d94eb31 -r ff9cf1fd8177 src/matchbox-keyboard.h
--- a/src/matchbox-keyboard.h Sun Apr 08 23:28:43 2007 +0000
+++ b/src/matchbox-keyboard.h Sun Apr 08 23:56:09 2007 +0000
-@@ -148,6 +148,7 @@ struct MBKeyboard
-
+@@ -153,6 +153,7 @@
+ char *config_file;
List *layouts;
MBKeyboardLayout *selected_layout;
-+ int selected_layout_no;
-
++ int selected_layout_no;
int key_border, key_pad, key_margin;
int row_spacing, col_spacing;
-@@ -177,6 +178,9 @@ int
+ boolean extended; /* are we showing extended keys ? */
+@@ -179,6 +180,9 @@
int
mb_kbd_ui_init(MBKeyboard *kbd);
diff --git a/packages/matchbox-keyboard/files/3-Changes-to-improve-layout-rendering--especially-after-adding-support-for.patch b/packages/matchbox-keyboard/files/3-Changes-to-improve-layout-rendering--especially-after-adding-support-for.patch
index 8513b6ed86..0a319e759e 100644
--- a/packages/matchbox-keyboard/files/3-Changes-to-improve-layout-rendering--especially-after-adding-support-for.patch
+++ b/packages/matchbox-keyboard/files/3-Changes-to-improve-layout-rendering--especially-after-adding-support-for.patch
@@ -43,52 +43,51 @@ diff -r ff9cf1fd8177 -r b010d54a6c50 src/matchbox-keyboard-ui.c
layout = mb_kbd_get_selected_layout(ui->kbd);
row_item = mb_kbd_layout_rows(layout);
-diff -r ff9cf1fd8177 -r b010d54a6c50 src/matchbox-keyboard.c
---- a/src/matchbox-keyboard.c Sun Apr 08 23:56:09 2007 +0000
-+++ b/src/matchbox-keyboard.c Mon Apr 09 00:06:34 2007 +0000
-@@ -23,8 +23,9 @@ mb_kbd_usage (char *progname)
- mb_kbd_usage (char *progname)
- {
- fprintf(stderr, "Usage:\n %s [Options ] [ Layout Variant ]\n", progname);
-- fprintf(stderr, "\nOptions are;\n"
-- " -xid,--xid Print window ID to stdout ( for embedding )\n");
-+ fprintf(stderr, "\nOptions are:\n"
-+ " -xid,--xid Print window ID to stdout ( for embedding )\n"
-+ " --hfactor <percent> Fix keyboard window size in percentage of desktop height\n");
- fprintf(stderr, "\nmatchbox-keyboard %s \nCopyright (C) 2005 Matthew Allum, OpenedHand Ltd.\n", VERSION);
+--- a/src/matchbox-keyboard.c 2007-08-17 17:09:05.240878162 +0300
++++ b/src/matchbox-keyboard.c 2007-08-17 17:11:36.749512174 +0300
+@@ -27,7 +27,9 @@
+ " -xid,--xid Print window ID to stdout ( for embedding )\n"
+ " -d,--daemon Run in 'daemon' mode (for remote control)\n"
+ " -o,--orientation <portrait|landscape>\n"
+- " Use to limit visibility with screen orientation \n");
++ " Use to limit visibility with screen orientation \n"
++ " -h,--hfactor <percent>\n"
++ " Fix keyboard window size in percentage of desktop height\n");
+ fprintf(stderr, "\nmatchbox-keyboard %s \nCopyright (C) 2007 OpenedHand Ltd.\n", VERSION);
exit(-1);
-@@ -58,6 +59,13 @@ mb_kbd_new (int argc, char **argv)
- want_embedding = True;
- continue;
- }
-+ if (streq ("-hfactor", argv[i]) || streq ("--hfactor", argv[i]))
-+ {
-+ if (i + 1 < argc) {
-+ kb->hfactor = atoi(argv[i + 1]);
-+ }
-+ continue;
-+ }
+@@ -52,7 +53,7 @@
+ kb->row_spacing = 5;
- if (i == (argc-1) && argv[i][0] != '-')
- variant = argv[i];
-@@ -77,7 +85,7 @@ mb_kbd_new (int argc, char **argv)
- kb->key_pad = 0;
- kb->col_spacing = 0;
- kb->row_spacing = 0;
-- kb->font_pt_size = 5;
-+ kb->font_pt_size = 6;
- }
+ kb->font_family = strdup("sans");
+- kb->font_pt_size = 5;
++ kb->font_pt_size = 6;
+ kb->font_variant = strdup("bold");
- if (!mb_kbd_config_load(kb, variant))
+ for (i = 1; i < argc; i++)
+@@ -63,6 +64,14 @@
+ continue;
+ }
+
++ if (streq ("-h", argv[i]) || streq ("--hfactor", argv[i]))
++ {
++ if (i + 1 < argc) {
++ kb->hfactor = atoi(argv[i + 1]);
++ }
++ continue;
++ }
++
+ if (streq ("-d", argv[i]) || streq ("--daemon", argv[i]))
+ {
+ want_daemon = True;
diff -r ff9cf1fd8177 -r b010d54a6c50 src/matchbox-keyboard.h
--- a/src/matchbox-keyboard.h Sun Apr 08 23:56:09 2007 +0000
+++ b/src/matchbox-keyboard.h Mon Apr 09 00:06:34 2007 +0000
-@@ -143,6 +143,7 @@ struct MBKeyboard
+@@ -150,6 +150,7 @@
char *font_family;
int font_pt_size;
char *font_variant;
+ int hfactor;
-
char *config_file;
-
+ List *layouts;
+ MBKeyboardLayout *selected_layout;
diff --git a/packages/matchbox-keyboard/files/4-Add-rendering-debug-logging.patch b/packages/matchbox-keyboard/files/4-Add-rendering-debug-logging.patch
index 7ce61e469c..509cd09404 100644
--- a/packages/matchbox-keyboard/files/4-Add-rendering-debug-logging.patch
+++ b/packages/matchbox-keyboard/files/4-Add-rendering-debug-logging.patch
@@ -44,14 +44,14 @@ diff -r b010d54a6c50 -r 38c3459f2e1a src/matchbox-keyboard-ui.c
width_diff = width - ui->base_alloc_width;
height_diff = height - ui->base_alloc_height;
-@@ -1125,6 +1133,7 @@ mb_kbd_ui_event_loop(MBKeyboardUI *ui)
+@@ -1178,6 +1178,7 @@
}
break;
case ConfigureNotify:
+ DBG("ConfigureNotify %i,%i", xev.xconfigure.width, xev.xconfigure.height);
- if (xev.xconfigure.width != ui->xwin_width
- || xev.xconfigure.height != ui->xwin_height)
- mb_kbd_ui_handle_configure(ui,
+ if (xev.xconfigure.window == ui->xwin
+ && (xev.xconfigure.width != ui->xwin_width
+ || xev.xconfigure.height != ui->xwin_height))
diff -r b010d54a6c50 -r 38c3459f2e1a src/matchbox-keyboard.h
--- a/src/matchbox-keyboard.h Mon Apr 09 00:06:34 2007 +0000
+++ b/src/matchbox-keyboard.h Mon Apr 09 00:08:07 2007 +0000
diff --git a/packages/uboot/u-boot_1.1.2.bb b/packages/uboot/u-boot_1.1.2.bb
index da8da74ad5..02fff45968 100644
--- a/packages/uboot/u-boot_1.1.2.bb
+++ b/packages/uboot/u-boot_1.1.2.bb
@@ -1,7 +1,7 @@
PR = "r1"
require u-boot.inc
-SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${PN}-${PV}.tar.bz2 \
+SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2 \
file://arm_flags.patch;patch=1 "
SRC_URI_append_vibren = "ftp://bec-systems.com/pub/pxa255_idp/u-boot/uboot_pxa255-idp_2005-03-23.patch;patch=1"
SRC_URI_append_mnci = "file://mnci.patch;patch=1 \
diff --git a/packages/uboot/u-boot_1.1.4.bb b/packages/uboot/u-boot_1.1.4.bb
index 45d24df455..7a92b57c34 100644
--- a/packages/uboot/u-boot_1.1.4.bb
+++ b/packages/uboot/u-boot_1.1.4.bb
@@ -2,7 +2,7 @@ require u-boot.inc
DEFAULT_PREFERENCE = "-1"
-SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${PN}-${PV}.tar.bz2 \
+SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2 \
file://u-boot-make381-fix.patch;patch=1"
SRC_URI_append_gumstix = "\
diff --git a/packages/uboot/uboot-utils_1.2.0.bb b/packages/uboot/uboot-utils_1.2.0.bb
index 89cc6a235d..fe9b3aca26 100644
--- a/packages/uboot/uboot-utils_1.2.0.bb
+++ b/packages/uboot/uboot-utils_1.2.0.bb
@@ -4,7 +4,7 @@ PRIORITY = "optional"
LICENSE = "GPL"
PR = "r6"
-SRC_URI = "${SOURCEFORGE_MIRROR}/u-boot/u-boot-${PV}.tar.bz2"
+SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2"
S = "${WORKDIR}/u-boot-${PV}"