diff options
author | Matthias Hentges <oe@hentges.net> | 2007-06-05 01:28:05 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2007-06-05 01:28:05 +0000 |
commit | 7a892c005f314899fdd1cf29c6ba9af21847da7e (patch) | |
tree | 7efd7cc5430368bc2b7f83c7d7bfeb1b04ac68a5 /packages/gpe-login | |
parent | f85eb90c56b5d1a7a3e22e05a582bf8cfa9ac7f9 (diff) |
gpe-login: Allow brightness adjustment via Fn+3 / Fb+4 for spitz, akita and c7x0, closing bug 2230
Diffstat (limited to 'packages/gpe-login')
-rw-r--r-- | packages/gpe-login/files/brightness-adjust-keyluanchrc.patch | 10 | ||||
-rw-r--r-- | packages/gpe-login/gpe-login_0.88.bb | 9 |
2 files changed, 18 insertions, 1 deletions
diff --git a/packages/gpe-login/files/brightness-adjust-keyluanchrc.patch b/packages/gpe-login/files/brightness-adjust-keyluanchrc.patch new file mode 100644 index 0000000000..cfc73f4d56 --- /dev/null +++ b/packages/gpe-login/files/brightness-adjust-keyluanchrc.patch @@ -0,0 +1,10 @@ +--- gpe-login-0.88/gpe-login.keylaunchrc.orig 2007-06-05 00:50:27.000000000 +0000 ++++ gpe-login-0.88/gpe-login.keylaunchrc 2007-06-05 00:52:03.000000000 +0000 +@@ -7,3 +7,7 @@ + key=...*Right:-:~chvt 3 + key=...*Escape:-:~/etc/init.d/gpe-dm stop + ++# Brightness control ++key=...*3:-:~display-brightness.sh down ++key=...*4:-:~display-brightness.sh up ++ diff --git a/packages/gpe-login/gpe-login_0.88.bb b/packages/gpe-login/gpe-login_0.88.bb index f42aa4c6a3..6780add5c8 100644 --- a/packages/gpe-login/gpe-login_0.88.bb +++ b/packages/gpe-login/gpe-login_0.88.bb @@ -5,11 +5,18 @@ LICENSE = "GPL" DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" RDEPENDS = "xkbd" RPROVIDES = "gpe-session-starter" -PR = "r1" +PR = "r2" + +PACKAGE_ARCH_${PN} = "${MACHINE}" inherit gpe + SRC_URI += "file://removeblue-fontsize8.patch;patch=1" SRC_URI += " file://chvt-keylaunch.patch;patch=1 " SRC_URI += " file://use-xtscal.patch;patch=1 " +SRC_URI_append_spitz = "file://brightness-adjust-keyluanchrc.patch;patch=1" +SRC_URI_append_akita = "file://brightness-adjust-keyluanchrc.patch;patch=1" +SRC_URI_append_c7x0 = "file://brightness-adjust-keyluanchrc.patch;patch=1" + |