Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
From 93c2f9bd8b058b28016e6db2421e5b38eac0606c Mon Sep 17 00:00:00 2001
From: Peter Korsgaard <peter@korsgaard.com>
Date: Thu, 17 Dec 2015 15:06:38 +0100
Subject: [PATCH] Revert to old pre-1.0 meta directory
Unionfs changed its meta directory from .unionfs to .unionfs-fuse with the
unionfs -> unionfs-fuse rename. The rename later got reverted everywhere
but the meta directory, so now unionfs doesn't find the whiteout files from
older releases.
Revert back to the pre-1.0 behaviour to fix this.
Committed upstream:
https://github.com/rpodgorny/unionfs-fuse/commit/93c2f9bd8b058b28016e6db2421e5b38eac0606c
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
src/unionfs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/unionfs.h b/src/unionfs.h
index c2b5ee3..74b824f 100644
--- a/src/unionfs.h
+++ b/src/unionfs.h
@@ -10,7 +10,7 @@
#define PATHLEN_MAX 1024
#define HIDETAG "_HIDDEN~"
-#define METANAME ".unionfs-fuse"
+#define METANAME ".unionfs"
#define METADIR (METANAME "/") // string concetanation!
// fuse meta files, we might want to hide those
--
2.1.4

View File

@@ -0,0 +1,14 @@
config BR2_PACKAGE_UNIONFS
bool "unionfs (FUSE)"
select BR2_PACKAGE_LIBFUSE
depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
depends on BR2_USE_MMU # libfuse
depends on !BR2_STATIC_LIBS # libfuse
help
A userspace unionfs implementation.
https://github.com/rpodgorny/unionfs-fuse
comment "unionfs needs a toolchain w/ threads, dynamic library"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS

View File

@@ -0,0 +1,3 @@
# Locally computed
sha256 2ee80bd0634a61adb2159212e155d607a0a82ad659214ae6edb3530396cccc09 unionfs-1.0.tar.gz
sha256 c8526f80448f344fba0100e5510793b6de985b24a8b526d9a6803bcd713d9de2 0001-include-asm-ioctl.h-for-_IOC_SIZE.patch

View File

@@ -0,0 +1,15 @@
################################################################################
#
# unionfs
#
################################################################################
UNIONFS_VERSION = 1.0
UNIONFS_SITE = $(call github,rpodgorny,unionfs-fuse,v$(UNIONFS_VERSION))
UNIONFS_PATCH = \
http://git.alpinelinux.org/cgit/aports/plain/main/unionfs-fuse/0001-include-asm-ioctl.h-for-_IOC_SIZE.patch
UNIONFS_DEPENDENCIES = libfuse host-pkgconf
UNIONFS_LICENSE = BSD-3c
UNIONFS_LICENSE_FILES = LICENSE
$(eval $(cmake-package))