WriteHeader writes a cpio header into an initrd
(hdr *cpio.Header)
| 140 | |
| 141 | // WriteHeader writes a cpio header into an initrd |
| 142 | func (w *Writer) WriteHeader(hdr *cpio.Header) error { |
| 143 | return w.cw.WriteHeader(hdr) |
| 144 | } |
| 145 | |
| 146 | // Write writes a cpio file into an initrd |
| 147 | func (w *Writer) Write(b []byte) (n int, e error) { |
no outgoing calls