-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule module
updated
15 files
+12 −12 | Makefile | |
+38 −13 | README.md | |
+106 −0 | src/indicators.h | |
+125 −23 | src/input_display.c | |
+131 −90 | src/input_fw.c | |
+111 −449 | src/input_iface.c | |
+85 −88 | src/input_iface.h | |
+90 −49 | src/input_meta.c | |
+377 −0 | src/input_modifiers.c | |
+3 −0 | src/input_rtc.c | |
+266 −0 | src/input_touch.c | |
+1 −1 | src/main.c | |
+200 −31 | src/params_iface.c | |
+25 −0 | src/registers.h | |
+123 −10 | src/sysfs_iface.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
config BR2_PACKAGE_BEEPY_SYMBOL_OVERLAY | ||
bool "beepy-symbol-overlay" | ||
default y | ||
depends on BR2_LINUX_KERNEL | ||
select BR2_PACKAGE_SHARP_DRM | ||
help | ||
Symbol menu overlay |
18 changes: 18 additions & 0 deletions
18
beepy_drivers/package/beepy-symbol-overlay/beepy-symbol-overlay.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
BEEPY_SYMBOL_OVERLAY_VERSION = 1.0 | ||
BEEPY_SYMBOL_OVERLAY_BASE = $(BR2_EXTERNAL_BEEPY_DRIVERS_PATH)/package/beepy-symbol-overlay | ||
BEEPY_SYMBOL_OVERLAY_SITE = $(BEEPY_SYMBOL_OVERLAY_BASE)/module | ||
BEEPY_SYMBOL_OVERLAY_SITE_METHOD = local | ||
|
||
BEEPY_SYMBOL_OVERLAY_INSTALL_IMAGES = YES | ||
BEEPY_SYMBOL_OVERLAY_MODULE_SUBDIRS = . | ||
|
||
define BEEPY_SYMBOL_OVERLAY_BUILD_CMDS | ||
$(MAKE) CXX="$(TARGET_CXX)" OBJCOPY="$(TARGET_OBJCOPY)" LD="$(TARGET_LD)" -C $(@D) \ | ||
CXXFLAGS=-DDEFAULT_KEYMAP_PATH=\\\"/usr/share/keymaps/beepy-kbd.map\\\" | ||
endef | ||
|
||
define BEEPY_SYMBOL_OVERLAY_INSTALL_TARGET_CMDS | ||
$(INSTALL) -D -m 0755 $(@D)/symbol-overlay $(TARGET_DIR)/sbin | ||
endef | ||
|
||
$(eval $(generic-package)) |
Submodule module
updated
10 files
+2 −0 | .gitignore | |
+7 −7 | Makefile | |
+158 −83 | src/drm_iface.c | |
+7 −2 | src/drm_iface.h | |
+0 −122 | src/indicators.h | |
+43 −67 | src/ioctl_iface.c | |
+84 −0 | src/ioctl_iface.h | |
+41 −1 | src/main.c | |
+3 −9 | src/params_iface.c | |
+1 −1 | src/params_iface.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters