Skip to content

Commit

Permalink
Add plan9 support
Browse files Browse the repository at this point in the history
Plan 9 has no ldd requirement/support.

Signed-off-by: Ronald G. Minnich <[email protected]>
  • Loading branch information
rminnich committed Nov 21, 2024
1 parent 899a47e commit 148beaf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ldd/ldd_plan9.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright 2024 the u-root Authors. All rights reserved
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package ldd

// List returns nothing.
//
// It's not an error for a file to not be an ELF.
func List(names ...string) ([]string, error) {
return nil, nil
}

// FList returns nothing.
//
// It's not an error for a file to not be an ELF.
func FList(names ...string) ([]string, error) {
return nil, nil
}

0 comments on commit 148beaf

Please sign in to comment.