[ptxdist] [PATCH] v4l-utils: version bump 1.12.2 -> 1.12.5

2017-11-30 Thread Philipp Zabel
Signed-off-by: Philipp Zabel --- rules/v4l-utils.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/v4l-utils.make b/rules/v4l-utils.make index 587165428..f08749541 100644 --- a/rules/v4l-utils.make +++ b/rules/v4l-utils.make @@ -16,8 +16,8

[ptxdist] [PATCH] systemd: add missing input-id rule

2017-11-30 Thread Philipp Zabel
Without this, udev does not tag input devices with ID_INPUT variables, which causes libinput to ignore them. For example, when starting weston: event0 - Logitech USB-PS/2 Optical Mouse: not tagged as supported input device event0 - not using input device '/dev/input/event0' event1 -

[ptxdist] [PATCH] mesalib: version bump 17.1.3 -> 17.2.6

2017-11-30 Thread Philipp Zabel
Signed-off-by: Philipp Zabel --- rules/mesalib.in | 1 + rules/mesalib.make | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/mesalib.in b/rules/mesalib.in index 2f60ce75d..458d7ee02 100644 --- a/rules/mesalib.in +++ b/rules/mesalib.in @@

[ptxdist] [PATCH] libdrm: version bump 2.4.82 -> 2.4.88

2017-11-30 Thread Philipp Zabel
Signed-off-by: Philipp Zabel --- rules/libdrm.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/libdrm.make b/rules/libdrm.make index 77e7ed7b6..169d98c12 100644 --- a/rules/libdrm.make +++ b/rules/libdrm.make @@ -17,8 +17,8 @@

[ptxdist] [PATCH 2/2] rootfs: correctly escape /etc/issue figlets

2017-11-30 Thread Roland Hieber
Use install_replace_figlet's newly introduced 'getty' escape mode to escape '\' with '\\' and prevent any possible variable interpolation when /etc/issue is displayed by getty. Signed-off-by: Roland Hieber --- rules/rootfs.make | 6 -- 1 file changed, 4 insertions(+), 2

[ptxdist] [PATCH 0/2] improve type design in the login banner

2017-11-30 Thread Roland Hieber
Every time I look at the login prompt, the banner looks a bit off. It's not much, but it's enough for me to notice and sigh internally at the unroundness and leakiness of the letters, and I find the letters a bit hard to parse. The reason for this appearance is that backslashes in the banner

[ptxdist] [PATCH 1/2] install_replace_figlet: allow escaping the figlet output

2017-11-30 Thread Roland Hieber
All known gettys in PTXdist allow inserting variables into /etc/issue by prefixing certain characters with backslashes (e.g. a literal '\v' expands to the kernel version from uname -v). In this case, '\'s in the figlet output must be escaped accordingly so they are displayed as '\'s on the screen.