summaryrefslogtreecommitdiff
path: root/Userland/Utilities/fdtdump.cpp
AgeCommit message (Collapse)Author
2021-12-16fdtdump: Port to LibMainKenneth Myhra
2021-11-23LibCore+AK: Move MappedFile from AK to LibCoreAndreas Kling
MappedFile is strictly a userspace thing, so it doesn't belong in AK (which is supposed to be user/kernel agnostic.)
2021-11-08AK: Use ErrorOr<T> for MappedFile factoriesAndreas Kling
Replace Result<T, E> with ErrorOr<T> and propagate the error to callers.
2021-10-21Utilities: Add fdtdump for dumping OpenFirmware Device TreesAndrew Kaster
Use the new LibDeviceTree to dump the contents of the device tree blob (Flattened Device Tree) file passed on the command line.