forked from radxa-pkg/aic8800
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
6881145
commit e011f87
Showing
7 changed files
with
63 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
PACKAGE_NAME="aic8800-pcie" | ||
PACKAGE_VERSION="#MODULE_VERSION#" | ||
CLEAN="make clean" | ||
MAKE[0]="make -C $kernel_source_dir M=$dkms_tree/$PACKAGE_NAME/$PACKAGE_VERSION/build/PCIE/driver_fw/driver/aic8800/aic8800_fdrv" | ||
|
||
BUILT_MODULE_NAME[0]="aic8800D80_fdrv" | ||
BUILT_MODULE_LOCATION[0]="PCIE/driver_fw/driver/aic8800/aic8800_fdrv" | ||
DEST_MODULE_LOCATION[0]="/updates/dkms" | ||
|
||
AUTOINSTALL=yes |
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 @@ | ||
SOURCE |
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,3 @@ | ||
#!/usr/bin/dh-exec | ||
|
||
src/PCIE usr/src/aic8800-pcie-${DEB_VERSION}/ |
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,2 @@ | ||
# We do not track this on GitHub | ||
aic8800-pcie-dkms: initial-upload-closes-no-bugs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
diff --git a/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/Makefile b/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/Makefile | ||
index 5bdb438..99f44b7 100644 | ||
--- a/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/Makefile | ||
+++ b/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/Makefile | ||
@@ -1,3 +1,12 @@ | ||
+ccflags-y += -Wno-implicit-fallthrough | ||
+ccflags-y += -Wno-unused-function | ||
+ccflags-y += -Wno-unused-variable | ||
+ccflags-y += -Wno-comment | ||
+ccflags-y += -Wno-format | ||
+ccflags-y += -Wno-declaration-after-statement | ||
+ccflags-y += -Wno-misleading-indentation | ||
+ccflags-y += -Wno-parentheses | ||
+ | ||
RWNX_VERS_NUM := 6.4.3.0 | ||
|
||
CONFIG_COUNTRY_CODE = "00" | ||
diff --git a/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_platform.c b/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_platform.c | ||
index 27e61f0..d6f983e 100644 | ||
--- a/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_platform.c | ||
+++ b/src/PCIE/driver_fw/driver/aic8800/aic8800_fdrv/rwnx_platform.c | ||
@@ -48,7 +48,7 @@ extern char aic_fw_path[FW_PATH_MAX_LEN]; | ||
#define PRINT 2 | ||
#define GET_VALUE 3 | ||
|
||
- | ||
+MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver); | ||
|
||
struct rwnx_plat *g_rwnx_plat; | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
fix-firmware-path.patch | ||
fix-sdio-fall-through.patch | ||
fix-debug-file-with-no-debug-symbols.patch | ||
fix-pcie-build.patch |