Move all to deprecated folder.
This commit is contained in:
12
deprecated/firmware/buildroot/package/cpio/Config.in
Normal file
12
deprecated/firmware/buildroot/package/cpio/Config.in
Normal file
@@ -0,0 +1,12 @@
|
||||
config BR2_PACKAGE_CPIO
|
||||
bool "cpio"
|
||||
# Need argp.h support
|
||||
select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
|
||||
depends on BR2_USE_WCHAR
|
||||
help
|
||||
cpio archive utility for creation and extraction.
|
||||
|
||||
https://www.gnu.org/software/cpio/
|
||||
|
||||
comment "cpio needs a toolchain w/ wchar"
|
||||
depends on !BR2_USE_WCHAR
|
||||
2
deprecated/firmware/buildroot/package/cpio/cpio.hash
Normal file
2
deprecated/firmware/buildroot/package/cpio/cpio.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 08a35e92deb3c85d269a0059a27d4140a9667a6369459299d08c17f713a92e73 cpio-2.12.tar.gz
|
||||
20
deprecated/firmware/buildroot/package/cpio/cpio.mk
Normal file
20
deprecated/firmware/buildroot/package/cpio/cpio.mk
Normal file
@@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
#
|
||||
# cpio
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CPIO_VERSION = 2.12
|
||||
CPIO_SITE = http://ftp.gnu.org/gnu/cpio
|
||||
CPIO_CONF_OPTS = --bindir=/bin
|
||||
CPIO_DEPENDENCIES = $(if $(BR2_PACKAGE_BUSYBOX),busybox)
|
||||
CPIO_LICENSE = GPLv3+
|
||||
CPIO_LICENSE_FILES = COPYING
|
||||
|
||||
# cpio uses argp.h which is not provided by uclibc or musl by default.
|
||||
# Use the argp-standalone package to provide this.
|
||||
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
||||
CPIO_DEPENDENCIES += argp-standalone
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user