Write writes a cpio file into an initrd
(b []byte)
| 145 | |
| 146 | // Write writes a cpio file into an initrd |
| 147 | func (w *Writer) Write(b []byte) (n int, e error) { |
| 148 | return w.cw.Write(b) |
| 149 | } |
| 150 | |
| 151 | // Close closes the writer |
| 152 | func (w *Writer) Close() error { |
no outgoing calls