Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
chromebrew
Commits
2e4b024f
Commit
2e4b024f
authored
Aug 02, 2017
by
lyxell
Committed by
GitHub
Aug 02, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #968 from jam7/update/fuse
Downgrade fuse.rb to use fuse 2.8.6
parents
4de0055f
fe20b438
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
packages/fuse.rb
packages/fuse.rb
+11
-4
No files found.
packages/fuse.rb
View file @
2e4b024f
...
@@ -3,12 +3,19 @@ require 'package'
...
@@ -3,12 +3,19 @@ require 'package'
class
Fuse
<
Package
class
Fuse
<
Package
description
'The reference implementation of the Linux FUSE (Filesystem in Userspace) interface.'
description
'The reference implementation of the Linux FUSE (Filesystem in Userspace) interface.'
homepage
'https://github.com/libfuse/libfuse'
homepage
'https://github.com/libfuse/libfuse'
version
'2.9.7'
# The version of libfuse need to be matched with ChromeOS /usr/lib/libfuse.so since we must use
source_url
'https://github.com/libfuse/libfuse/releases/download/fuse-2.9.7/fuse-2.9.7.tar.gz'
# /sbin/mount.fuse which is not possible to be overwritten. If we use different version of
source_sha256
'832432d1ad4f833c20e13b57cf40ce5277a9d33e483205fc63c78111b3358874'
# libfuse, it may cause errors. Chrome OS 59 and 60 use libfuse 2.8.6.
version
'2.8.6'
source_url
'https://github.com/libfuse/libfuse/releases/download/fuse_2_9_4/fuse-2.8.6.tar.gz'
source_sha256
'1ec1913e38f09b2a9ec1579e1800805b5e2c747d1dce515e316dbb665ca139d6'
def
self
.
build
def
self
.
build
system
"./configure"
# Disable util since we must use pre-installed /sbin/mount.fuse
system
"./configure"
,
"--libdir=
#{
CREW_LIB_PREFIX
}
"
,
"--enable-shared"
,
"--disable-static"
,
"--with-pic"
,
"--disable-util"
# A workaround to "'CLONE_NEWNS' undeclared" error. See below for details.
# https://github.com/libfuse/libfuse/commit/ae43094c13ecf49e0b738bbda633cf193c7b3670
system
"sed -i util/fusermount.c -e '1i#define _GNU_SOURCE'"
system
"make"
system
"make"
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment