Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 017ff92 commit 0c49e02Copy full SHA for 0c49e02
internal/ebutil/libs_arm.go
@@ -2,5 +2,6 @@
2
3
package ebutil
4
5
-// Based on a 32-bit Raspbian system.
6
-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.
7
+const usrLibMultiarchDir = "/var/empty"
internal/ebutil/remount_internal_test.go
@@ -18,6 +18,7 @@ import (
18
19
var expectedLibMultiarchDir = map[string]string{
20
"amd64": "/usr/lib/x86_64-linux-gnu",
21
+ "arm": "/var/empty",
22
"arm64": "/usr/lib/aarch64-linux-gnu",
23
}
24
0 commit comments