Skip to content

Commit

Permalink
loadkeys: Sync with kbd package
Browse files Browse the repository at this point in the history
Loadkeys is a copy of kbd to reduce the filesystem size. It doesn't
build with GCC 11, so update to the latest kdb version.

Signed-off-by: Joel Stanley <[email protected]>
  • Loading branch information
shenki committed Mar 15, 2023
1 parent a8d6242 commit 1d982ee
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion openpower/package/loadkeys/loadkeys.hash
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# From https://www.kernel.org/pub/linux/utils/kbd/sha256sums.asc
sha256 7a899de1c0eb75f3aea737095a736f2375e1cbfbe693fc14a3fe0bfb4649fb5e kbd-2.0.3.tar.xz
sha256 ccdf452387a6380973d2927363e9cbb939fa2068915a6f937ff9d24522024683 kbd-2.5.1.tar.xz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
sha256 5a16340fe773f422144b436df90319114a2884933c56e9be6fad642e59be5e1f CREDITS
14 changes: 9 additions & 5 deletions openpower/package/loadkeys/loadkeys.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@
#
################################################################################

LOADKEYS_VERSION = 2.0.3
LOADKEYS_VERSION = 2.5.1
LOADKEYS_SOURCE = kbd-$(LOADKEYS_VERSION).tar.xz
LOADKEYS_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kbd
LOADKEYS_CONF_OPTS = --disable-vlock
LOADKEYS_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
LOADKEYS_LICENSE = GPLv2+
LOADKEYS_LICENSE_FILES = COPYING
LOADKEYS_CONF_OPTS = \
--disable-vlock \
--disable-tests
LOADKEYS_DEPENDENCIES = \
$(TARGET_NLS_DEPENDENCIES) \
host-pkgconf
LOADKEYS_LICENSE = GPL-2.0+
LOADKEYS_LICENSE_FILES = COPYING CREDITS
LOADKEYS_INSTALL_STAGING = NO
LOADKEYS_INSTALL_TARGET = YES

Expand Down

0 comments on commit 1d982ee

Please sign in to comment.