-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds the kernel module required to ensure proper functioning of the ODroid HC4's GPU so that HDMI output works as expected. Adds the kernel module required to ensure proper functioning of the SATA ODroid HC4's SATA ports. Adds a u-boot variant for the ODroid HC4. This is not used directly, but rather flashed into the SPI of the unit so that it can boot Talos. Documentation on this process can be found in the Talos repo.
- Loading branch information
Showing
4 changed files
with
51 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
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,14 @@ | ||
# We need to enumerate PCI devices in order to be able to detect USB devices and boot from them | ||
# TODO Remove this patch once fixed upstream | ||
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h | ||
index c3a2414b91..95b7eb5675 100644 | ||
--- a/include/config_distro_bootcmd.h | ||
+++ b/include/config_distro_bootcmd.h | ||
@@ -289,6 +289,7 @@ | ||
#define BOOTENV_SHARED_USB \ | ||
"boot_net_usb_start=usb start\0" \ | ||
"usb_boot=" \ | ||
+ BOOTENV_RUN_PCI_ENUM \ | ||
"usb start; " \ | ||
BOOTENV_SHARED_BLKDEV_BODY(usb) | ||
#define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV |
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