We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae38e86 commit ae47281Copy full SHA for ae47281
source/common.c
@@ -443,6 +443,16 @@ BBIO_err load_device_tree(const char *name)
443
FILE *file = NULL;
444
char line[256];
445
char uboot_overlay;
446
+ /*
447
+ Refer to: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#U-Boot_Overlays
448
+
449
+ Robert C. Nelson maintains the BeagleBoard.org Debian images and
450
+ suggested adding this check to see if u-boot overlays are enabled.
451
452
+ If u-boot overlays are enabled, then device tree overlays should not
453
+ be loaded with the cape manager by writing to the slots file. There
454
+ is currently a kernel bug that causes the write to hang.
455
+ */
456
const char *cmd = "grep -c bone_capemgr.uboot_capemgr_enabled=1 /proc/cmdline";
457
458
#ifdef BBBVERSION41
0 commit comments