mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-22 12:57:23 -04:00
Merge branch 'main' of github.com:ross144/cvw
This commit is contained in:
commit
fcf9adae8c
5 changed files with 6012 additions and 6 deletions
1672
linux/buildroot-config-src/buildroot-2023.05.1/linux.config
Normal file
1672
linux/buildroot-config-src/buildroot-2023.05.1/linux.config
Normal file
File diff suppressed because it is too large
Load diff
4326
linux/buildroot-config-src/buildroot-2023.05.1/main.config
Normal file
4326
linux/buildroot-config-src/buildroot-2023.05.1/main.config
Normal file
File diff suppressed because it is too large
Load diff
12
linux/buildroot-packages/package-2023.05.1.patch
Normal file
12
linux/buildroot-packages/package-2023.05.1.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
diff --git a/package/Config.in b/package/Config.in
|
||||
index ad438667d2..810bf0897e 100644
|
||||
--- a/package/Config.in
|
||||
+++ b/package/Config.in
|
||||
@@ -503,6 +503,7 @@ endmenu
|
||||
source "package/fconfig/Config.in"
|
||||
source "package/flashrom/Config.in"
|
||||
source "package/fmtools/Config.in"
|
||||
+ source "package/fpga-axi-sdc/Config.in"
|
||||
source "package/freeipmi/Config.in"
|
||||
source "package/freescale-imx/Config.in"
|
||||
source "package/fxload/Config.in"
|
|
@ -379,15 +379,11 @@ static irqreturn_t sdc_isr(int irq, void * dev_id) {
|
|||
|
||||
/*---------------------------------------------------------------------*/
|
||||
|
||||
// JACOB: Had to modify this to resemble the older version of Linux
|
||||
// Used to be called hw_reset in older versions. Now it's
|
||||
// called .card_hw_reset to make it unambiguous what it's
|
||||
// resetting. When I update Linux, this will be changed back.
|
||||
static const struct mmc_host_ops axi_sdc_ops = {
|
||||
.request = sdc_request,
|
||||
.set_ios = sdc_set_ios,
|
||||
.get_cd = sdc_get_cd,
|
||||
.hw_reset = sdc_card_reset,
|
||||
.card_hw_reset = sdc_card_reset,
|
||||
};
|
||||
|
||||
static int axi_sdc_probe(struct platform_device * pdev) {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
memory@80000000 {
|
||||
device_type = "memory";
|
||||
reg = <0x00 0x80000000 0x00 0x08000000>;
|
||||
reg = <0x00 0x80000000 0x00 0x10000000>;
|
||||
};
|
||||
|
||||
cpus {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue