* [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31
@ 2015-03-06 10:25 Hubert Feurstein
2015-03-06 10:25 ` [ptxdist] [PATCH 02/10] util-linux-ng: add fstrim option Hubert Feurstein
` (9 more replies)
0 siblings, 10 replies; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/chrony.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/chrony.make b/rules/chrony.make
index 4b8bef5..140f468 100644
--- a/rules/chrony.make
+++ b/rules/chrony.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_CHRONY) += chrony
#
# Paths and names
#
-CHRONY_VERSION := 1.29
-CHRONY_MD5 := 6e1a8ee2ce6632bedc2f8b5cdccfa69f
+CHRONY_VERSION := 1.31
+CHRONY_MD5 := 04ab702fc81150db06809562a9aaed92
CHRONY := chrony-$(CHRONY_VERSION)
CHRONY_SUFFIX := tar.gz
CHRONY_URL := http://download.tuxfamily.org/chrony/$(CHRONY).$(CHRONY_SUFFIX)
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 02/10] util-linux-ng: add fstrim option
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:48 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 03/10] util-linux-ng: add dmesg option Hubert Feurstein
` (8 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/util-linux-ng.in | 12 ++++++++++++
rules/util-linux-ng.make | 3 +++
2 files changed, 15 insertions(+)
diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
index a5f51a6..50dfbf6 100644
--- a/rules/util-linux-ng.in
+++ b/rules/util-linux-ng.in
@@ -200,6 +200,18 @@ config UTIL_LINUX_NG_FSCK
comment "BusyBox' fsck is selected!"
depends on BUSYBOX_FSCK
+config UTIL_LINUX_NG_FSTRIM
+ bool
+ prompt "fstrim"
+ depends on !BUSYBOX_FSTRIM || ALLYES
+ help
+ fstrim is used on a mounted filesystem to discard (or "trim")
+ blocks which are not in use by the filesystem. This is useful
+ for solid-state drives (SSDs) and thinly-provisioned storage.
+
+comment "BusyBox' fstrim is selected!"
+ depends on BUSYBOX_FSTRIM
+
config UTIL_LINUX_NG_IPCS
bool
prompt "ipcs"
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index fc28c66..acd3b78 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -205,6 +205,9 @@ endif
ifdef PTXCONF_UTIL_LINUX_NG_FSCK
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /sbin/fsck)
endif
+ifdef PTXCONF_UTIL_LINUX_NG_FSTRIM
+ @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /sbin/fstrim)
+endif
ifdef PTXCONF_UTIL_LINUX_NG_IPCS
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
endif
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 03/10] util-linux-ng: add dmesg option
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
2015-03-06 10:25 ` [ptxdist] [PATCH 02/10] util-linux-ng: add fstrim option Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:49 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 04/10] ethtool: version bump 3.0 -> 3.18 Hubert Feurstein
` (7 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/util-linux-ng.in | 10 ++++++++++
rules/util-linux-ng.make | 3 +++
2 files changed, 13 insertions(+)
diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
index 50dfbf6..55dcd38 100644
--- a/rules/util-linux-ng.in
+++ b/rules/util-linux-ng.in
@@ -77,6 +77,16 @@ config UTIL_LINUX_NG_PARTX
help
The partx utility.
+config UTIL_LINUX_NG_DMESG
+ bool
+ depends on !BUSYBOX_DMESG || ALLYES
+ prompt "dmesg"
+ help
+ The dmesg utility.
+
+comment "BusyBox' dmesg is selected!"
+ depends on BUSYBOX_DMESG
+
config UTIL_LINUX_NG_MOUNTPOINT
bool
select UTIL_LINUX_NG_LIBMOUNT
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index acd3b78..bcef93e 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -171,6 +171,9 @@ endif
ifdef PTXCONF_UTIL_LINUX_NG_LINE
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/line)
endif
+ifdef PTXCONF_UTIL_LINUX_NG_DMESG
+ @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /bin/dmesg)
+endif
ifdef PTXCONF_UTIL_LINUX_NG_MOUNTPOINT
@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /bin/mountpoint)
endif
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 04/10] ethtool: version bump 3.0 -> 3.18
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
2015-03-06 10:25 ` [ptxdist] [PATCH 02/10] util-linux-ng: add fstrim option Hubert Feurstein
2015-03-06 10:25 ` [ptxdist] [PATCH 03/10] util-linux-ng: add dmesg option Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:51 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 05/10] ethtool: add license information Hubert Feurstein
` (6 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/ethtool.make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rules/ethtool.make b/rules/ethtool.make
index 0d74716..a9b936f 100644
--- a/rules/ethtool.make
+++ b/rules/ethtool.make
@@ -17,9 +17,9 @@ PACKAGES-$(PTXCONF_ETHTOOL) += ethtool
#
# Paths and names
#
-ETHTOOL_VERSION := 3.0
-ETHTOOL_MD5 := cb129398cbbf39859901b55ecac101da
-ETHTOOL_SUFFIX := tar.bz2
+ETHTOOL_VERSION := 3.18
+ETHTOOL_MD5 := fbf1a167b88a5966a2c56a2483af68c6
+ETHTOOL_SUFFIX := tar.xz
ETHTOOL := ethtool-$(ETHTOOL_VERSION)
ETHTOOL_URL := $(call ptx/mirror, KERNEL, ../software/network/ethtool/$(ETHTOOL).$(ETHTOOL_SUFFIX))
ETHTOOL_SOURCE := $(SRCDIR)/$(ETHTOOL).$(ETHTOOL_SUFFIX)
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 05/10] ethtool: add license information
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
` (2 preceding siblings ...)
2015-03-06 10:25 ` [ptxdist] [PATCH 04/10] ethtool: version bump 3.0 -> 3.18 Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:51 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 06/10] libksba: version bump 1.0.7 -> 1.3.2 Hubert Feurstein
` (5 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/ethtool.make | 2 ++
1 file changed, 2 insertions(+)
diff --git a/rules/ethtool.make b/rules/ethtool.make
index a9b936f..47bf8b2 100644
--- a/rules/ethtool.make
+++ b/rules/ethtool.make
@@ -25,6 +25,8 @@ ETHTOOL_URL := $(call ptx/mirror, KERNEL, ../software/network/ethtool/$(ETHTOOL)
ETHTOOL_SOURCE := $(SRCDIR)/$(ETHTOOL).$(ETHTOOL_SUFFIX)
ETHTOOL_DIR := $(BUILDDIR)/$(ETHTOOL)
ETHTOOL_LICENSE := GPLv2
+ETHTOOL_LICENSE_FILES := \
+ file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
# ----------------------------------------------------------------------------
# Prepare
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 06/10] libksba: version bump 1.0.7 -> 1.3.2
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
` (3 preceding siblings ...)
2015-03-06 10:25 ` [ptxdist] [PATCH 05/10] ethtool: add license information Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:51 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 07/10] libksba: add license information Hubert Feurstein
` (4 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/libksba.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/libksba.make b/rules/libksba.make
index 3a3efae..fb22d44 100644
--- a/rules/libksba.make
+++ b/rules/libksba.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBKSBA) += libksba
#
# Paths and names
#
-LIBKSBA_VERSION := 1.0.7
-LIBKSBA_MD5 := eebce521a90600369c33c5fa6b9bbbd8
+LIBKSBA_VERSION := 1.3.2
+LIBKSBA_MD5 := c3c9a66e22d87fe3ae59865250b8a09c
LIBKSBA := libksba-$(LIBKSBA_VERSION)
LIBKSBA_SUFFIX := tar.bz2
LIBKSBA_URL := ftp://ftp.gnupg.org/gcrypt/libksba/$(LIBKSBA).$(LIBKSBA_SUFFIX)
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 07/10] libksba: add license information
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
` (4 preceding siblings ...)
2015-03-06 10:25 ` [ptxdist] [PATCH 06/10] libksba: version bump 1.0.7 -> 1.3.2 Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:52 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 08/10] libassuan: version bump 2.0.0 -> 2.2.0 Hubert Feurstein
` (3 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
---
rules/libksba.make | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/rules/libksba.make b/rules/libksba.make
index fb22d44..2464d4b 100644
--- a/rules/libksba.make
+++ b/rules/libksba.make
@@ -23,6 +23,11 @@ LIBKSBA_SUFFIX := tar.bz2
LIBKSBA_URL := ftp://ftp.gnupg.org/gcrypt/libksba/$(LIBKSBA).$(LIBKSBA_SUFFIX)
LIBKSBA_SOURCE := $(SRCDIR)/$(LIBKSBA).$(LIBKSBA_SUFFIX)
LIBKSBA_DIR := $(BUILDDIR)/$(LIBKSBA)
+LIBKSBA_LICENSE := GPLv2, GPLv3, LGPLv3
+LIBKSBA_LICENSE_FILES := \
+ file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
+ file://COPYING.GPLv3;md5=2f31b266d3440dd7ee50f92cf67d8e6c \
+ file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02
# ----------------------------------------------------------------------------
# Prepare
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 08/10] libassuan: version bump 2.0.0 -> 2.2.0
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
` (5 preceding siblings ...)
2015-03-06 10:25 ` [ptxdist] [PATCH 07/10] libksba: add license information Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:53 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 09/10] libassuan: add license information Hubert Feurstein
` (2 subsequent siblings)
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/libassuan.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/libassuan.make b/rules/libassuan.make
index 8ac09b1..10d7ae3 100644
--- a/rules/libassuan.make
+++ b/rules/libassuan.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBASSUAN) += libassuan
#
# Paths and names
#
-LIBASSUAN_VERSION := 2.0.0
-LIBASSUAN_MD5 := 59bc0ae7194c412d7a522029005684b2
+LIBASSUAN_VERSION := 2.2.0
+LIBASSUAN_MD5 := a104faed3e97b9c302c5d67cc22b1d60
LIBASSUAN := libassuan-$(LIBASSUAN_VERSION)
LIBASSUAN_SUFFIX := tar.bz2
LIBASSUAN_URL := ftp://ftp.gnupg.org/gcrypt/libassuan/$(LIBASSUAN).$(LIBASSUAN_SUFFIX)
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 09/10] libassuan: add license information
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
` (6 preceding siblings ...)
2015-03-06 10:25 ` [ptxdist] [PATCH 08/10] libassuan: version bump 2.0.0 -> 2.2.0 Hubert Feurstein
@ 2015-03-06 10:25 ` Hubert Feurstein
2015-03-26 8:53 ` Michael Olbrich
2015-03-06 10:26 ` [ptxdist] [PATCH 10/10] libgcrypt: version bump 1.5.3 -> 1.6.3 Hubert Feurstein
2015-03-26 8:50 ` [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Michael Olbrich
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:25 UTC (permalink / raw)
To: ptxdist
---
rules/libassuan.make | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/rules/libassuan.make b/rules/libassuan.make
index 10d7ae3..97846c5 100644
--- a/rules/libassuan.make
+++ b/rules/libassuan.make
@@ -23,6 +23,10 @@ LIBASSUAN_SUFFIX := tar.bz2
LIBASSUAN_URL := ftp://ftp.gnupg.org/gcrypt/libassuan/$(LIBASSUAN).$(LIBASSUAN_SUFFIX)
LIBASSUAN_SOURCE := $(SRCDIR)/$(LIBASSUAN).$(LIBASSUAN_SUFFIX)
LIBASSUAN_DIR := $(BUILDDIR)/$(LIBASSUAN)
+LIBASSUAN_LICENSE := GPLv3, LGPLv2.1
+LIBASSUAN_LICENSE_FILES := \
+ file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
+ file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1
# ----------------------------------------------------------------------------
# Prepare
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* [ptxdist] [PATCH 10/10] libgcrypt: version bump 1.5.3 -> 1.6.3
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
` (7 preceding siblings ...)
2015-03-06 10:25 ` [ptxdist] [PATCH 09/10] libassuan: add license information Hubert Feurstein
@ 2015-03-06 10:26 ` Hubert Feurstein
2015-03-21 17:17 ` Michael Olbrich
2015-03-26 8:50 ` [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Michael Olbrich
9 siblings, 1 reply; 20+ messages in thread
From: Hubert Feurstein @ 2015-03-06 10:26 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
rules/libgcrypt.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/libgcrypt.make b/rules/libgcrypt.make
index b700487..fe3e474 100644
--- a/rules/libgcrypt.make
+++ b/rules/libgcrypt.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_LIBGCRYPT) += libgcrypt
#
# Paths and names
#
-LIBGCRYPT_VERSION := 1.5.3
-LIBGCRYPT_MD5 := 993159b2924ae7b0e4eaff0743c2db35
+LIBGCRYPT_VERSION := 1.6.3
+LIBGCRYPT_MD5 := 4262c3aadf837500756c2051a5c4ae5e
LIBGCRYPT := libgcrypt-$(LIBGCRYPT_VERSION)
LIBGCRYPT_SUFFIX := tar.bz2
LIBGCRYPT_URL := http://artfiles.org/gnupg.org/libgcrypt/$(LIBGCRYPT).$(LIBGCRYPT_SUFFIX) ftp://ftp.gnupg.org/gcrypt/libgcrypt/$(LIBGCRYPT).$(LIBGCRYPT_SUFFIX)
--
2.3.0
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 10/10] libgcrypt: version bump 1.5.3 -> 1.6.3
2015-03-06 10:26 ` [ptxdist] [PATCH 10/10] libgcrypt: version bump 1.5.3 -> 1.6.3 Hubert Feurstein
@ 2015-03-21 17:17 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-21 17:17 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:26:00AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
When updating to a new version, please check for new configure options.
I usually diff the output of './configure --help' to see what changed and
update the options accordingly.
In this case I see some hardware accel options. I think there are runtime
checks (please verify) so we can enable those unconditionally. For NEON we
have an options (PTXCONF_NEON) so that should be used.
Michael
> ---
> rules/libgcrypt.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/libgcrypt.make b/rules/libgcrypt.make
> index b700487..fe3e474 100644
> --- a/rules/libgcrypt.make
> +++ b/rules/libgcrypt.make
> @@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_LIBGCRYPT) += libgcrypt
> #
> # Paths and names
> #
> -LIBGCRYPT_VERSION := 1.5.3
> -LIBGCRYPT_MD5 := 993159b2924ae7b0e4eaff0743c2db35
> +LIBGCRYPT_VERSION := 1.6.3
> +LIBGCRYPT_MD5 := 4262c3aadf837500756c2051a5c4ae5e
> LIBGCRYPT := libgcrypt-$(LIBGCRYPT_VERSION)
> LIBGCRYPT_SUFFIX := tar.bz2
> LIBGCRYPT_URL := http://artfiles.org/gnupg.org/libgcrypt/$(LIBGCRYPT).$(LIBGCRYPT_SUFFIX) ftp://ftp.gnupg.org/gcrypt/libgcrypt/$(LIBGCRYPT).$(LIBGCRYPT_SUFFIX)
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 02/10] util-linux-ng: add fstrim option
2015-03-06 10:25 ` [ptxdist] [PATCH 02/10] util-linux-ng: add fstrim option Hubert Feurstein
@ 2015-03-26 8:48 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:48 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:25:52AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Thanks, applied (It's already in ptxdist-2015.03.0).
Michael
> ---
> rules/util-linux-ng.in | 12 ++++++++++++
> rules/util-linux-ng.make | 3 +++
> 2 files changed, 15 insertions(+)
>
> diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
> index a5f51a6..50dfbf6 100644
> --- a/rules/util-linux-ng.in
> +++ b/rules/util-linux-ng.in
> @@ -200,6 +200,18 @@ config UTIL_LINUX_NG_FSCK
> comment "BusyBox' fsck is selected!"
> depends on BUSYBOX_FSCK
>
> +config UTIL_LINUX_NG_FSTRIM
> + bool
> + prompt "fstrim"
> + depends on !BUSYBOX_FSTRIM || ALLYES
> + help
> + fstrim is used on a mounted filesystem to discard (or "trim")
> + blocks which are not in use by the filesystem. This is useful
> + for solid-state drives (SSDs) and thinly-provisioned storage.
> +
> +comment "BusyBox' fstrim is selected!"
> + depends on BUSYBOX_FSTRIM
> +
> config UTIL_LINUX_NG_IPCS
> bool
> prompt "ipcs"
> diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
> index fc28c66..acd3b78 100644
> --- a/rules/util-linux-ng.make
> +++ b/rules/util-linux-ng.make
> @@ -205,6 +205,9 @@ endif
> ifdef PTXCONF_UTIL_LINUX_NG_FSCK
> @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /sbin/fsck)
> endif
> +ifdef PTXCONF_UTIL_LINUX_NG_FSTRIM
> + @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /sbin/fstrim)
> +endif
> ifdef PTXCONF_UTIL_LINUX_NG_IPCS
> @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
> endif
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 03/10] util-linux-ng: add dmesg option
2015-03-06 10:25 ` [ptxdist] [PATCH 03/10] util-linux-ng: add dmesg option Hubert Feurstein
@ 2015-03-26 8:49 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:49 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:25:53AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Thanks, applied (It's already in ptxdist-2015.03.0).
Michael
> ---
> rules/util-linux-ng.in | 10 ++++++++++
> rules/util-linux-ng.make | 3 +++
> 2 files changed, 13 insertions(+)
>
> diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
> index 50dfbf6..55dcd38 100644
> --- a/rules/util-linux-ng.in
> +++ b/rules/util-linux-ng.in
> @@ -77,6 +77,16 @@ config UTIL_LINUX_NG_PARTX
> help
> The partx utility.
>
> +config UTIL_LINUX_NG_DMESG
> + bool
> + depends on !BUSYBOX_DMESG || ALLYES
> + prompt "dmesg"
> + help
> + The dmesg utility.
> +
> +comment "BusyBox' dmesg is selected!"
> + depends on BUSYBOX_DMESG
> +
> config UTIL_LINUX_NG_MOUNTPOINT
> bool
> select UTIL_LINUX_NG_LIBMOUNT
> diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
> index acd3b78..bcef93e 100644
> --- a/rules/util-linux-ng.make
> +++ b/rules/util-linux-ng.make
> @@ -171,6 +171,9 @@ endif
> ifdef PTXCONF_UTIL_LINUX_NG_LINE
> @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/line)
> endif
> +ifdef PTXCONF_UTIL_LINUX_NG_DMESG
> + @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /bin/dmesg)
> +endif
> ifdef PTXCONF_UTIL_LINUX_NG_MOUNTPOINT
> @$(call install_copy, util-linux-ng, 0, 0, 0755, -, /bin/mountpoint)
> endif
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
` (8 preceding siblings ...)
2015-03-06 10:26 ` [ptxdist] [PATCH 10/10] libgcrypt: version bump 1.5.3 -> 1.6.3 Hubert Feurstein
@ 2015-03-26 8:50 ` Michael Olbrich
9 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:50 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:25:51AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Thanks, applied.
Michael
> ---
> rules/chrony.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/chrony.make b/rules/chrony.make
> index 4b8bef5..140f468 100644
> --- a/rules/chrony.make
> +++ b/rules/chrony.make
> @@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_CHRONY) += chrony
> #
> # Paths and names
> #
> -CHRONY_VERSION := 1.29
> -CHRONY_MD5 := 6e1a8ee2ce6632bedc2f8b5cdccfa69f
> +CHRONY_VERSION := 1.31
> +CHRONY_MD5 := 04ab702fc81150db06809562a9aaed92
> CHRONY := chrony-$(CHRONY_VERSION)
> CHRONY_SUFFIX := tar.gz
> CHRONY_URL := http://download.tuxfamily.org/chrony/$(CHRONY).$(CHRONY_SUFFIX)
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 04/10] ethtool: version bump 3.0 -> 3.18
2015-03-06 10:25 ` [ptxdist] [PATCH 04/10] ethtool: version bump 3.0 -> 3.18 Hubert Feurstein
@ 2015-03-26 8:51 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:51 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:25:54AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Thanks, applied.
Michael
> ---
> rules/ethtool.make | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/rules/ethtool.make b/rules/ethtool.make
> index 0d74716..a9b936f 100644
> --- a/rules/ethtool.make
> +++ b/rules/ethtool.make
> @@ -17,9 +17,9 @@ PACKAGES-$(PTXCONF_ETHTOOL) += ethtool
> #
> # Paths and names
> #
> -ETHTOOL_VERSION := 3.0
> -ETHTOOL_MD5 := cb129398cbbf39859901b55ecac101da
> -ETHTOOL_SUFFIX := tar.bz2
> +ETHTOOL_VERSION := 3.18
> +ETHTOOL_MD5 := fbf1a167b88a5966a2c56a2483af68c6
> +ETHTOOL_SUFFIX := tar.xz
> ETHTOOL := ethtool-$(ETHTOOL_VERSION)
> ETHTOOL_URL := $(call ptx/mirror, KERNEL, ../software/network/ethtool/$(ETHTOOL).$(ETHTOOL_SUFFIX))
> ETHTOOL_SOURCE := $(SRCDIR)/$(ETHTOOL).$(ETHTOOL_SUFFIX)
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 05/10] ethtool: add license information
2015-03-06 10:25 ` [ptxdist] [PATCH 05/10] ethtool: add license information Hubert Feurstein
@ 2015-03-26 8:51 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:51 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:25:55AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Thanks, applied.
Michael
> ---
> rules/ethtool.make | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/rules/ethtool.make b/rules/ethtool.make
> index a9b936f..47bf8b2 100644
> --- a/rules/ethtool.make
> +++ b/rules/ethtool.make
> @@ -25,6 +25,8 @@ ETHTOOL_URL := $(call ptx/mirror, KERNEL, ../software/network/ethtool/$(ETHTOOL)
> ETHTOOL_SOURCE := $(SRCDIR)/$(ETHTOOL).$(ETHTOOL_SUFFIX)
> ETHTOOL_DIR := $(BUILDDIR)/$(ETHTOOL)
> ETHTOOL_LICENSE := GPLv2
> +ETHTOOL_LICENSE_FILES := \
> + file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263
>
> # ----------------------------------------------------------------------------
> # Prepare
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 06/10] libksba: version bump 1.0.7 -> 1.3.2
2015-03-06 10:25 ` [ptxdist] [PATCH 06/10] libksba: version bump 1.0.7 -> 1.3.2 Hubert Feurstein
@ 2015-03-26 8:51 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:51 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:25:56AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Thanks, applied.
Michael
> ---
> rules/libksba.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/libksba.make b/rules/libksba.make
> index 3a3efae..fb22d44 100644
> --- a/rules/libksba.make
> +++ b/rules/libksba.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBKSBA) += libksba
> #
> # Paths and names
> #
> -LIBKSBA_VERSION := 1.0.7
> -LIBKSBA_MD5 := eebce521a90600369c33c5fa6b9bbbd8
> +LIBKSBA_VERSION := 1.3.2
> +LIBKSBA_MD5 := c3c9a66e22d87fe3ae59865250b8a09c
> LIBKSBA := libksba-$(LIBKSBA_VERSION)
> LIBKSBA_SUFFIX := tar.bz2
> LIBKSBA_URL := ftp://ftp.gnupg.org/gcrypt/libksba/$(LIBKSBA).$(LIBKSBA_SUFFIX)
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 07/10] libksba: add license information
2015-03-06 10:25 ` [ptxdist] [PATCH 07/10] libksba: add license information Hubert Feurstein
@ 2015-03-26 8:52 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:52 UTC (permalink / raw)
To: ptxdist
Thanks, applied.
Michael
On Fri, Mar 06, 2015 at 11:25:57AM +0100, Hubert Feurstein wrote:
> ---
> rules/libksba.make | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/rules/libksba.make b/rules/libksba.make
> index fb22d44..2464d4b 100644
> --- a/rules/libksba.make
> +++ b/rules/libksba.make
> @@ -23,6 +23,11 @@ LIBKSBA_SUFFIX := tar.bz2
> LIBKSBA_URL := ftp://ftp.gnupg.org/gcrypt/libksba/$(LIBKSBA).$(LIBKSBA_SUFFIX)
> LIBKSBA_SOURCE := $(SRCDIR)/$(LIBKSBA).$(LIBKSBA_SUFFIX)
> LIBKSBA_DIR := $(BUILDDIR)/$(LIBKSBA)
> +LIBKSBA_LICENSE := GPLv2, GPLv3, LGPLv3
> +LIBKSBA_LICENSE_FILES := \
> + file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> + file://COPYING.GPLv3;md5=2f31b266d3440dd7ee50f92cf67d8e6c \
> + file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02
>
> # ----------------------------------------------------------------------------
> # Prepare
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 08/10] libassuan: version bump 2.0.0 -> 2.2.0
2015-03-06 10:25 ` [ptxdist] [PATCH 08/10] libassuan: version bump 2.0.0 -> 2.2.0 Hubert Feurstein
@ 2015-03-26 8:53 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:53 UTC (permalink / raw)
To: ptxdist
On Fri, Mar 06, 2015 at 11:25:58AM +0100, Hubert Feurstein wrote:
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Thanks, applied.
Michael
> ---
> rules/libassuan.make | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/rules/libassuan.make b/rules/libassuan.make
> index 8ac09b1..10d7ae3 100644
> --- a/rules/libassuan.make
> +++ b/rules/libassuan.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_LIBASSUAN) += libassuan
> #
> # Paths and names
> #
> -LIBASSUAN_VERSION := 2.0.0
> -LIBASSUAN_MD5 := 59bc0ae7194c412d7a522029005684b2
> +LIBASSUAN_VERSION := 2.2.0
> +LIBASSUAN_MD5 := a104faed3e97b9c302c5d67cc22b1d60
> LIBASSUAN := libassuan-$(LIBASSUAN_VERSION)
> LIBASSUAN_SUFFIX := tar.bz2
> LIBASSUAN_URL := ftp://ftp.gnupg.org/gcrypt/libassuan/$(LIBASSUAN).$(LIBASSUAN_SUFFIX)
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [ptxdist] [PATCH 09/10] libassuan: add license information
2015-03-06 10:25 ` [ptxdist] [PATCH 09/10] libassuan: add license information Hubert Feurstein
@ 2015-03-26 8:53 ` Michael Olbrich
0 siblings, 0 replies; 20+ messages in thread
From: Michael Olbrich @ 2015-03-26 8:53 UTC (permalink / raw)
To: ptxdist
Thanks, applied.
Michael
On Fri, Mar 06, 2015 at 11:25:59AM +0100, Hubert Feurstein wrote:
> ---
> rules/libassuan.make | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/rules/libassuan.make b/rules/libassuan.make
> index 10d7ae3..97846c5 100644
> --- a/rules/libassuan.make
> +++ b/rules/libassuan.make
> @@ -23,6 +23,10 @@ LIBASSUAN_SUFFIX := tar.bz2
> LIBASSUAN_URL := ftp://ftp.gnupg.org/gcrypt/libassuan/$(LIBASSUAN).$(LIBASSUAN_SUFFIX)
> LIBASSUAN_SOURCE := $(SRCDIR)/$(LIBASSUAN).$(LIBASSUAN_SUFFIX)
> LIBASSUAN_DIR := $(BUILDDIR)/$(LIBASSUAN)
> +LIBASSUAN_LICENSE := GPLv3, LGPLv2.1
> +LIBASSUAN_LICENSE_FILES := \
> + file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
> + file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1
>
> # ----------------------------------------------------------------------------
> # Prepare
> --
> 2.3.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2015-03-26 8:53 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-06 10:25 [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Hubert Feurstein
2015-03-06 10:25 ` [ptxdist] [PATCH 02/10] util-linux-ng: add fstrim option Hubert Feurstein
2015-03-26 8:48 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 03/10] util-linux-ng: add dmesg option Hubert Feurstein
2015-03-26 8:49 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 04/10] ethtool: version bump 3.0 -> 3.18 Hubert Feurstein
2015-03-26 8:51 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 05/10] ethtool: add license information Hubert Feurstein
2015-03-26 8:51 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 06/10] libksba: version bump 1.0.7 -> 1.3.2 Hubert Feurstein
2015-03-26 8:51 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 07/10] libksba: add license information Hubert Feurstein
2015-03-26 8:52 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 08/10] libassuan: version bump 2.0.0 -> 2.2.0 Hubert Feurstein
2015-03-26 8:53 ` Michael Olbrich
2015-03-06 10:25 ` [ptxdist] [PATCH 09/10] libassuan: add license information Hubert Feurstein
2015-03-26 8:53 ` Michael Olbrich
2015-03-06 10:26 ` [ptxdist] [PATCH 10/10] libgcrypt: version bump 1.5.3 -> 1.6.3 Hubert Feurstein
2015-03-21 17:17 ` Michael Olbrich
2015-03-26 8:50 ` [ptxdist] [PATCH 01/10] chrony: version bump 1.29 -> 1.31 Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox