gitee.com/mirrors_u-root/u-root@v7.0.0+incompatible/pkg/dt/print.go (about) 1 // Copyright 2019 the u-root Authors. All rights reserved 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package dt 6 7 import ( 8 "errors" 9 "io" 10 ) 11 12 // PrintDTS prints the FDT in the .dts format. 13 // TODO: not yet implemented 14 func (fdt *FDT) PrintDTS(f io.Writer) error { 15 return errors.New("not yet implemented") 16 }