the bitrig master branch has been updated by patrick with 1 new commit: commit 55cacf9c25b1c4322c330ccb31d89c903c0f5743 diff: https://github.com/bitrig/bitrig/commit/55cacf9 author: Patrick Wildt <[email protected]> date: Mon Aug 17 22:52:06 2015 +0200
fdt: fix matching compatible nodes An "compatible" property is a list of strings, where each string is terminated with the usual null character. If we're looking to match a "compatible" with this property we need to go through every single string and see how they compare. This has already been implemented. Still, there was one issue with comparing the following: "arm,gic" vs. "arm,gic-v2m-frame" Instead of making sure the string is the complete same, only the first 7 characters where checked, which made the comparison return "it's all good". This is not wanted. To fix this issue, check the length of both before starting any other string comparison. M sys/arch/arm/fdt/fdt.c
