Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions internal/ebutil/libs_arm.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

package ebutil

// Based on a 32-bit Raspbian system.
const usrLibMultiarchDir = "/usr/lib/arm-linux-gnueabihf"
// This constant is for 64-bit systems. 32-bit ARM is not supported.
// If ever it becomes supported, it should be handled with a `usrLib32MultiarchDir` constant.
const usrLibMultiarchDir = "/var/empty"
1 change: 1 addition & 0 deletions internal/ebutil/remount_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (

var expectedLibMultiarchDir = map[string]string{
"amd64": "/usr/lib/x86_64-linux-gnu",
"arm": "/var/empty",
"arm64": "/usr/lib/aarch64-linux-gnu",
}

Expand Down