1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

Libraries: Add LibDeviceTree for manipulating OpenFirmware Device Trees

Starting with header validation and a dump() method that can be used to
debug future parsing work.
This commit is contained in:
Andrew Kaster 2021-10-17 19:09:18 -06:00 committed by Brian Gianforcaro
parent 4ffee78146
commit 644928314a
5 changed files with 214 additions and 0 deletions

View file

@ -0,0 +1,7 @@
set(SOURCES
Validation.cpp
)
serenity_lib(LibDeviceTree DeviceTree)
target_link_libraries(LibDeviceTree LibC LibCore)