1// Copyright 2022 The ChromiumOS Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5//! Flattened device tree writer. 6 7mod fdt; 8mod overlay; 9mod path; 10mod propval; 11 12pub use fdt::Error; 13pub use fdt::Fdt; 14pub use fdt::FdtNode; 15pub use fdt::Result; 16pub use overlay::apply_overlay; 17pub use path::Path; 18 19