1
0
mirror of https://github.com/google/gasket-driver.git synced 2025-12-13 07:54:26 +00:00

Move source to src folder, add gitignore

Change-Id: Ie033078aa57e7cd7c7ce3c1d3d1f0057c8c2cf24
This commit is contained in:
Michael Brooks
2021-06-03 08:32:04 -07:00
parent 85fc01f9a1
commit 1eeffd9635
19 changed files with 7 additions and 11 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
debian/.debhelper
debian/*debhelper*
debian/files
debian/gasket-dkms.substvars
debian/gasket-dkms/

View File

@@ -1,9 +0,0 @@
#
# Makefile for Gasket framework and dependent drivers.
#
obj-$(CONFIG_STAGING_GASKET_FRAMEWORK) += gasket.o
obj-$(CONFIG_STAGING_APEX_DRIVER) += apex.o
gasket-objs := gasket_core.o gasket_ioctl.o gasket_interrupt.o gasket_page_table.o gasket_sysfs.o
apex-objs := apex_driver.o

View File

@@ -2,8 +2,8 @@
# Makefile for Gasket framework and dependent drivers.
#
obj-m += gasket.o
obj-m += apex.o
obj-$(CONFIG_STAGING_GASKET_FRAMEWORK) += gasket.o
obj-$(CONFIG_STAGING_APEX_DRIVER) += apex.o
gasket-objs := gasket_core.o gasket_ioctl.o gasket_interrupt.o gasket_page_table.o gasket_sysfs.o
apex-objs := apex_driver.o

View File

View File