Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -10,9 +10,10 @@ config BR2_PACKAGE_GPTFDISK
!(BR2_PACKAGE_GPTFDISK_SGDISK || BR2_PACKAGE_GPTFDISK_CGDISK)
help
GPT fdisk (consisting of the gdisk and sgdisk programs) is a
text-mode partitioning tool that works on Globally Unique Identifier
(GUID) Partition Table (GPT) disks, rather than on the more common
(through 2010) Master Boot Record (MBR) partition tables.
text-mode partitioning tool that works on Globally Unique
Identifier (GUID) Partition Table (GPT) disks, rather than on
the more common (through 2010) Master Boot Record (MBR)
partition tables.
http://www.rodsbooks.com/gdisk/
@@ -22,23 +23,24 @@ config BR2_PACKAGE_GPTFDISK_GDISK
bool "interactive gdisk"
help
Install the interactive GUID partition table (GPT) manipulator
/usr/sbin/gdisk which is modelled after and quite similar in use
to the traditional MBR based fdisk tool.
/usr/sbin/gdisk which is modelled after and quite similar in
use to the traditional MBR based fdisk tool.
config BR2_PACKAGE_GPTFDISK_SGDISK
bool "command line sgdisk"
select BR2_PACKAGE_POPT
help
Install the command-line GUID partition table (GPT) manipulator
/usr/sbin/sgdisk which is named after the traditional MBR based
sfdisk tool albeit with an entirely different option syntax.
Install the command-line GUID partition table (GPT)
manipulator /usr/sbin/sgdisk which is named after the
traditional MBR based sfdisk tool albeit with an entirely
different option syntax.
config BR2_PACKAGE_GPTFDISK_CGDISK
bool "ncurses cgdisk"
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_NCURSES_WCHAR # needed because of UTF-16
depends on BR2_USE_WCHAR # ncurses wchar
depends on !(BR2_bfin && BR2_BINFMT_FLAT) # ncurses wchar support
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_NCURSES_WCHAR # needed because of UTF-16
help
Install the ncurses-based GUID partition table (GPT)
manipulator /usr/sbin/cgdisk.

View File

@@ -1,3 +1,5 @@
# From http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.0/
md5 2061f917af084215898d4fea04d8388f gptfdisk-1.0.0.tar.gz
sha1 97f25db2def1c1939ed3954520bfd9948806d95a gptfdisk-1.0.0.tar.gz
# From http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.3/
md5 07b625a583b66c8c5840be5923f3e3fe gptfdisk-1.0.3.tar.gz
sha1 9a74bbe7805d562316e92417f71e4b03155308e6 gptfdisk-1.0.3.tar.gz
# Locally computed
sha256 89fd5aec35c409d610a36cb49c65b442058565ed84042f767bba614b8fc91b5c gptfdisk-1.0.3.tar.gz

View File

@@ -4,9 +4,9 @@
#
################################################################################
GPTFDISK_VERSION = 1.0.0
GPTFDISK_VERSION = 1.0.3
GPTFDISK_SITE = http://downloads.sourceforge.net/sourceforge/gptfdisk
GPTFDISK_LICENSE = GPLv2+
GPTFDISK_LICENSE = GPL-2.0+
GPTFDISK_LICENSE_FILES = COPYING
GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_GDISK) += gdisk
@@ -22,13 +22,8 @@ GPTFDISK_DEPENDENCIES += ncurses
endif
ifeq ($(BR2_STATIC_LIBS),y)
# gptfdisk dependencies may link against libintl/libiconv, so we need
# to do so as well when linking statically
ifeq ($(BR2_PACKAGE_GETTEXT),y)
GPTFDISK_DEPENDENCIES += gettext
GPTFDISK_LDLIBS += -lintl
endif
# gptfdisk dependencies may link against libiconv, so we need to do so
# as well when linking statically
ifeq ($(BR2_PACKAGE_LIBICONV),y)
GPTFDISK_DEPENDENCIES += libiconv
GPTFDISK_LDLIBS += -liconv
@@ -53,7 +48,7 @@ define HOST_GPTFDISK_BUILD_CMDS
endef
define HOST_GPTFDISK_INSTALL_CMDS
$(INSTALL) -D -m 0755 $(@D)/sgdisk $(HOST_DIR)/usr/sbin/sgdisk
$(INSTALL) -D -m 0755 $(@D)/sgdisk $(HOST_DIR)/sbin/sgdisk
endef
$(eval $(generic-package))