summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill McVicker <willmcvicker@google.com>2022-04-11 12:23:47 -0700
committerWill McVicker <willmcvicker@google.com>2022-04-14 12:37:42 -0700
commitfc277072822a5b366f46b7ab4f6d2f6fcf914c68 (patch)
tree2b9ec2233a071e66123498e479df17ac23f6e523
parent9f7896dd33bb7c630a03aaf4421149f18eac258e (diff)
downloadsec_touch-fc277072822a5b366f46b7ab4f6d2f6fcf914c68.tar.gz
Update the project paths
This updates the new path for the kernel/private/google-modules/soc/gs project and gs/google-modules -> private/google-modules. Signed-off-by: Will McVicker <willmcvicker@google.com> Change-Id: I7d54aeb6b38c64eec22a92d8ec9d4927cb63d68c
-rw-r--r--BUILD.bazel16
-rw-r--r--Kbuild8
-rw-r--r--Makefile2
3 files changed, 13 insertions, 13 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 85c06f1..69ac994 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -14,7 +14,7 @@ filegroup(
"Kconfig",
]),
visibility = [
- "//gs/google-modules/soc-modules:__pkg__",
+ "//private/google-modules/soc/gs:__pkg__",
],
)
@@ -25,19 +25,19 @@ kernel_module(
"**/*.h",
"Kbuild",
]) + [
- "//gs/google-modules/touch/common:headers",
- "//gs/google-modules/display:headers",
- "//gs/google-modules/display/include:headers",
- "//gs/google-modules/soc-modules:gs101_soc_headers",
+ "//private/google-modules/touch/common:headers",
+ "//private/google-modules/display:headers",
+ "//private/google-modules/display/include:headers",
+ "//private/google-modules/soc/gs:gs101_soc_headers",
],
outs = [
"sec_touch.ko",
],
- kernel_build = "//gs/google-modules/soc-modules:slider",
+ kernel_build = "//private/google-modules/soc/gs:slider",
kernel_module_deps = [
- "//gs/google-modules/touch/common:common.slider",
+ "//private/google-modules/touch/common:common.slider",
],
visibility = [
- "//gs/google-modules/soc-modules:__pkg__",
+ "//private/google-modules/soc/gs:__pkg__",
],
)
diff --git a/Kbuild b/Kbuild
index 89d0a27..7e37bd4 100644
--- a/Kbuild
+++ b/Kbuild
@@ -1,9 +1,9 @@
# SPDX-License-Identifier: GPL-2.0
-ccflags-y += -I$(srctree)/../gs/google-modules/display
-ccflags-y += -I$(srctree)/../gs/google-modules/display/include/uapi
-ccflags-y += -I$(srctree)/../gs/google-modules/touch/common
-ccflags-y += -I$(srctree)/../gs/google-modules/touch/common/include
+ccflags-y += -I$(srctree)/../private/google-modules/display
+ccflags-y += -I$(srctree)/../private/google-modules/display/include/uapi
+ccflags-y += -I$(srctree)/../private/google-modules/touch/common
+ccflags-y += -I$(srctree)/../private/google-modules/touch/common/include
obj-$(CONFIG_TOUCHSCREEN_SEC_TS) += sec_touch.o
sec_touch-objs += sec_ts.o sec_ts_fw.o sec_ts_fn.o sec_cmd.o \
diff --git a/Makefile b/Makefile
index bceb692..20f9357 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ KERNEL_SRC ?= /lib/modules/$(shell uname -r)/build
M ?= $(shell pwd)
EXTRA_CFLAGS += -DDYNAMIC_DEBUG_MODULE
-EXTRA_SYMBOLS += $(OUT_DIR)/../gs/google-modules/touch/common/Module.symvers
+EXTRA_SYMBOLS += $(OUT_DIR)/../private/google-modules/touch/common/Module.symvers
modules modules_install clean:
$(MAKE) -C $(KERNEL_SRC) M=$(M) \