Skip to content

Commit

Permalink
package/cramfs: change to new site location
Browse files Browse the repository at this point in the history
As of Linux-4.15, cramfs now has a official maintainer again.
Additionally, that person is hosting and maintaining a new version of
cramfs-tools.

Patches 0001-endian.patch and 0003-fix-missing-types.patch are no longer
needed because they have been upstreamed.

However, since patch 0002-cygwin_IO.patch is so old, it is being
removed until someone that needs it can reapply and test it. At
that point, they should submit the changes to the new cramfs-tools
maintainer instead of adding the patches back here.

Please note that cross-endian support for cramfsck is not supported
at this time.

Cc: Nicolas Pitre <[email protected]>
Signed-off-by: Chris Brandt <[email protected]>
Reviewed-by: Matt Weber <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
seebe authored and tpetazzoni committed Apr 9, 2018
1 parent 0908b8e commit 2cf4871
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 328 deletions.
2 changes: 1 addition & 1 deletion fs/cramfs/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ config BR2_TARGET_ROOTFS_CRAMFS
help
Build a cramfs root filesystem

http://sourceforge.net/projects/cramfs/
https://github.com/npitre/cramfs-tools
4 changes: 2 additions & 2 deletions fs/cramfs/cramfs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
################################################################################

ifeq ($(BR2_ENDIAN),"BIG")
CRAMFS_OPTS = -b
CRAMFS_OPTS = -B
else
CRAMFS_OPTS = -l
CRAMFS_OPTS = -L
endif

define ROOTFS_CRAMFS_CMD
Expand Down
288 changes: 0 additions & 288 deletions package/cramfs/0001-endian.patch

This file was deleted.

15 changes: 0 additions & 15 deletions package/cramfs/0002-cygwin_IO.patch

This file was deleted.

17 changes: 0 additions & 17 deletions package/cramfs/0003-fix-missing-types.patch

This file was deleted.

2 changes: 1 addition & 1 deletion package/cramfs/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ config BR2_PACKAGE_CRAMFS
cramfs is a compressed read-only filesystem. This package
contains the tools to generate and check a cramfs filesystem.

http://sourceforge.net/projects/cramfs/
https://github.com/npitre/cramfs-tools
2 changes: 1 addition & 1 deletion package/cramfs/Config.in.host
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ config BR2_PACKAGE_HOST_CRAMFS
cramfs is a compressed read-only filesystem. This package
contains the tools to generate and check a cramfs filesystem.

http://sourceforge.net/projects/cramfs/
https://github.com/npitre/cramfs-tools
2 changes: 1 addition & 1 deletion package/cramfs/cramfs.hash
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Locally computed:
sha256 133caca2c4e7c64106555154ee0ff693f5cf5beb9421ce2eb86baee997d22368 cramfs-1.1.tar.gz
sha256 99d87aa5874f4a34c219275e0297b0f4c710895f9c87295267aeabe6a752add1 cramfs-1a1e65f2a049.tar.gz
4 changes: 2 additions & 2 deletions package/cramfs/cramfs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#
################################################################################

CRAMFS_VERSION = 1.1
CRAMFS_SITE = http://downloads.sourceforge.net/project/cramfs/cramfs/$(CRAMFS_VERSION)
CRAMFS_VERSION = 1a1e65f2a049
CRAMFS_SITE = $(call github,npitre,cramfs-tools,$(CRAMFS_VERSION))
CRAMFS_LICENSE = GPL-2.0+
CRAMFS_LICENSE_FILES = COPYING

Expand Down

0 comments on commit 2cf4871

Please sign in to comment.