Merge changes I6a5357e9,I199f070e
* changes: Install ko to /lib/modules android_filesystem is OutputFileProducer
This commit is contained in:
@@ -271,6 +271,16 @@ func (f *filesystem) AndroidMkEntries() []android.AndroidMkEntries {
|
||||
}}
|
||||
}
|
||||
|
||||
var _ android.OutputFileProducer = (*filesystem)(nil)
|
||||
|
||||
// Implements android.OutputFileProducer
|
||||
func (f *filesystem) OutputFiles(tag string) (android.Paths, error) {
|
||||
if tag == "" {
|
||||
return []android.Path{f.output}, nil
|
||||
}
|
||||
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
|
||||
}
|
||||
|
||||
// Filesystem is the public interface for the filesystem struct. Currently, it's only for the apex
|
||||
// package to have access to the output file.
|
||||
type Filesystem interface {
|
||||
|
Reference in New Issue
Block a user