package/fatcat: new host package

Utility to manipulate FAT file systems, E.G. to tweak the output of
genimage.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2019-05-21 22:40:14 +02:00
parent e0dae84942
commit 08d6e63bdc
5 changed files with 25 additions and 0 deletions

View File

@ -1751,6 +1751,7 @@ F: configs/sheevaplug_defconfig
F: package/bats-core/
F: package/docker-compose/
F: package/dump1090/
F: package/fatcat/
F: package/flickcurl/
F: package/fscryptctl/
F: package/ifmetric/

View File

@ -18,6 +18,7 @@ menu "Host utilities"
source "package/e2tools/Config.in.host"
source "package/f2fs-tools/Config.in.host"
source "package/faketime/Config.in.host"
source "package/fatcat/Config.in.host"
source "package/fwup/Config.in.host"
source "package/genext2fs/Config.in.host"
source "package/genimage/Config.in.host"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_HOST_FATCAT
bool "host fatcat"
help
Fatcat is designed to manipulate FAT filesystems, in order
to explore, extract, repair, recover and forensic them. It
currently supports FAT12, FAT16 and FAT32.
https://github.com/Gregwar/fatcat

View File

@ -0,0 +1,3 @@
# Locally computed:
sha256 d44f6bb80d20ed50095ace9e71df8da98037db9f22cda76bdd9724d37df69130 fatcat-1.0.6.tar.gz
sha256 3ea03755e32cf7f5b12981de92a0fdad396448195fe0024990c9cbc388e9866c LICENSE

12
package/fatcat/fatcat.mk Normal file
View File

@ -0,0 +1,12 @@
################################################################################
#
# fatcat
#
################################################################################
FATCAT_VERSION = 1.0.6
FATCAT_SITE = $(call github,Gregwar,fatcat,$(FATCAT_VERSION))
FATCAT_LICENSE = MIT
FATCAT_LICENSE_FILES = LICENSE
$(eval $(host-cmake-package))