Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_SUNXI_TOOLS
|
||||
bool "sunxi nand-part"
|
||||
depends on BR2_arm
|
||||
help
|
||||
nand-part is part of sunxi-tools for Allwinner A10 (aka sun4i) and
|
||||
A13 (aka sun5i) based devices. It is a tool to repartition the
|
||||
internal NAND on sunxi devices.
|
||||
|
||||
http://linux-sunxi.org/Sunxi-tools
|
||||
@@ -0,0 +1,12 @@
|
||||
config BR2_PACKAGE_HOST_SUNXI_TOOLS
|
||||
bool "host sunxi-tools"
|
||||
depends on BR2_arm
|
||||
help
|
||||
Tools for Allwinner A10 (aka sun4i) and A13 (aka sun5i)
|
||||
based devices. This includes fex2bin which can be used to
|
||||
compile .fex board definition files to the binary script.bin
|
||||
format required by the linux-sunxi kernel. These tools are
|
||||
specific for linux-sunxi kernel and do not apply to the
|
||||
mainline Linux kernel version.
|
||||
|
||||
http://linux-sunxi.org/Sunxi-tools
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 2aa0afc21476ee9b03acff20a19f32c522106e61bcbfa1a9463168fe90a85fc5 sunxi-tools-v1.3.tar.gz
|
||||
@@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
#
|
||||
# sunxi-tools
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SUNXI_TOOLS_VERSION = v1.3
|
||||
SUNXI_TOOLS_SITE = $(call github,linux-sunxi,sunxi-tools,$(SUNXI_TOOLS_VERSION))
|
||||
SUNXI_TOOLS_LICENSE = GPLv2+
|
||||
SUNXI_TOOLS_LICENSE_FILES = COPYING
|
||||
HOST_SUNXI_TOOLS_DEPENDENCIES = host-libusb host-pkgconf
|
||||
FEX2BIN = $(HOST_DIR)/usr/bin/fex2bin
|
||||
|
||||
define HOST_SUNXI_TOOLS_BUILD_CMDS
|
||||
$(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) PREFIX=$(HOST_DIR)/usr \
|
||||
CFLAGS="$(HOST_CFLAGS) -std=c99 -D_POSIX_C_SOURCE=200112L -Iinclude/" \
|
||||
-C $(@D) tools
|
||||
endef
|
||||
|
||||
define HOST_SUNXI_TOOLS_INSTALL_CMDS
|
||||
$(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) PREFIX=$(HOST_DIR)/usr \
|
||||
-C $(@D) install-tools
|
||||
endef
|
||||
|
||||
define SUNXI_TOOLS_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) PREFIX=/usr \
|
||||
CFLAGS="$(TARGET_CFLAGS) -std=c99 -D_POSIX_C_SOURCE=200112L -Iinclude/" \
|
||||
-C $(@D) sunxi-nand-part
|
||||
endef
|
||||
|
||||
define SUNXI_TOOLS_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/sunxi-nand-part $(TARGET_DIR)/usr/bin/sunxi-nand-part
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
$(eval $(host-generic-package))
|
||||
Reference in New Issue
Block a user