Re: [ptxdist] [ANNOUNCE] OSELAS.Toolchain() Releases

2016-07-18 Thread Jan Remmet
On Fri, Feb 19, 2016 at 05:55:56PM +0100, Michael Olbrich wrote:
> Hi,
> 
> I've just released
> 
> - OSELAS.Toolchain-2011.03.2
> - OSELAS.Toolchain-2011.11.4
> - OSELAS.Toolchain-2012.12.2
> - OSELAS.Toolchain-2013.12.3
> - OSELAS.Toolchain-2014.12.2
> 
> These are all bug-fix releases to add the fix for CVE-2015-7547.
> For OSELAS.Toolchain-2014.12.2 and OSELAS.Toolchain-2013.12.3 this is the
> only change. The older releases also contain several fixes to make it
> possible to build them on newer Linux systems.
> In addition OSELAS.Toolchain-2011.03.2 was updated to use binutils-2.21.1a
> because binutils-2.21 is no longer available.
> 
> Note: Even with the fixes applied, building the toolchains with gcc-5.x
> will probably fail. If necessary, the correct compiler can be configured
> with "ptxdist setup":
>   Developer Options   --->
> (gcc-4.9) host CC
> (g++-4.9) host CXX
> 
> Download the releases here:
> http://www.pengutronix.de/oselas/toolchain/download/
Noticed that they are not on debian.pengutronix.de. Will there be packages?

Jan

> 
> Regards,
> Michael Olbrich
> 
> 
> 
> -- 
> 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- |



> ___
> ptxdist mailing list
> ptxdist@pengutronix.de


___
ptxdist mailing list
ptxdist@pengutronix.de

[ptxdist] [PATCH] usb-modeswitch-data: new package

2016-07-18 Thread Ladislav Michl
Signed-off-by: Ladislav Michl 
---
 Note: This package uses ':' in filenames
   (this is just a resend of the same patch sent a few months ago)

 rules/usb-modeswitch-data.in   | 10 ++
 rules/usb-modeswitch-data.make | 70 ++
 2 files changed, 80 insertions(+)
 create mode 100644 rules/usb-modeswitch-data.in
 create mode 100644 rules/usb-modeswitch-data.make

diff --git a/rules/usb-modeswitch-data.in b/rules/usb-modeswitch-data.in
new file mode 100644
index 000..ffaacda
--- /dev/null
+++ b/rules/usb-modeswitch-data.in
@@ -0,0 +1,10 @@
+## SECTION=shell_and_console
+
+config USB_MODESWITCH_DATA
+   tristate
+   prompt "usb-modeswitch-data"
+   depends on USB_MODESWITCH && UDEV
+   help
+ Device database and udev rules file for USB_ModeSwitch.
+
+# vim: set sw=8 ts=8 noet ft=kconfig:
diff --git a/rules/usb-modeswitch-data.make b/rules/usb-modeswitch-data.make
new file mode 100644
index 000..6b12898
--- /dev/null
+++ b/rules/usb-modeswitch-data.make
@@ -0,0 +1,70 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2016 by Ladislav Michl 
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_USB_MODESWITCH_DATA) += usb-modeswitch-data
+
+#
+# Paths and names
+#
+USB_MODESWITCH_DATA_VERSION:= 20160112
+USB_MODESWITCH_DATA_MD5:= 040d11138fc0a61b980d704ac3b4547f
+USB_MODESWITCH_DATA:= 
usb-modeswitch-data-$(USB_MODESWITCH_DATA_VERSION)
+USB_MODESWITCH_DATA_SUFFIX := tar.bz2
+USB_MODESWITCH_DATA_URL:= 
http://www.draisberghof.de/usb_modeswitch/$(USB_MODESWITCH_DATA).$(USB_MODESWITCH_DATA_SUFFIX)
+USB_MODESWITCH_DATA_SOURCE := 
$(SRCDIR)/$(USB_MODESWITCH_DATA).$(USB_MODESWITCH_DATA_SUFFIX)
+USB_MODESWITCH_DATA_DIR:= $(BUILDDIR)/$(USB_MODESWITCH_DATA)
+USB_MODESWITCH_DATA_LICENSE:= GPL-2.0
+
+
+# 
+# Nothing to Compile
+# 
+$(STATEDIR)/usb-modeswitch-data.compile:
+   @$(call targetinfo)
+   @$(call touch)
+
+
+# 
+# Prepare
+# 
+
+USB_MODESWITCH_DATA_CONF_TOOL  := NO
+USB_MODESWITCH_DATA_MAKE_ENV   := $(CROSS_ENV)
+USB_MODESWITCH_DATA_INSTALL_OPT:= db-install
+
+
+# 
+# Target-Install
+# 
+$(STATEDIR)/usb-modeswitch-data.targetinstall:
+   @$(call targetinfo)
+
+   @$(call install_init, usb-modeswitch-data)
+   @$(call install_fixup, usb-modeswitch-data,PRIORITY,optional)
+   @$(call install_fixup, usb-modeswitch-data,SECTION,base)
+   @$(call install_fixup, usb-modeswitch-data,AUTHOR,"Ladislav Michl 
")
+   @$(call install_fixup, usb-modeswitch-data,DESCRIPTION,missing)
+
+   @$(call install_copy, usb-modeswitch-data, 0, 0, 0644, -, \
+/lib/udev/rules.d/40-usb_modeswitch.rules)
+
+   @cd $(USB_MODESWITCH_DATA_PKGDIR) && \
+   for f in `find usr/share/usb_modeswitch/ -type f`; do \
+   $(call install_copy, usb-modeswitch-data, 0, 0, 0644, -, /$$f); 
\
+   done
+
+   @$(call install_finish, usb-modeswitch-data)
+
+   @$(call touch)
+
+# vim: syntax=make
-- 
2.1.4


___
ptxdist mailing list
ptxdist@pengutronix.de

[ptxdist] PTXdist 2016.07.0 released

2016-07-18 Thread Michael Olbrich
Hi,

I'm happy to announce that I've just released ptxdist-2016.07.0.

It's a rather small release this time. As always, we have the usual mix of
new packages, version bumps and bugfixes.
Starting with this release, building BSPs will use less disk space: Hard
links are used to copy files from the pkgdirs to sysroot.

Thanks to all contributors and - as always - the shortlog below.

Enjoy,
Michael Olbrich


Clemens Gruber (3):
  mpg123: bump version to 1.23.5
  ca-certificates: update certificates
  ca-certificates: fix python call in shebang

Marc Kleine-Budde (3):
  crda: update to new regulatory.bin
  crda: version bump to 3.18
  crda: fix build on all 64 bit platforms

Michael Grzeschik (1):
  barebox: fix installation of target programs

Michael Olbrich (21):
  doc: fix section level for 'touch'
  Makefile.in: fix installing if sphinx-build is not found
  qt5: don't forget the patches
  qt5: fix building with newer toolchains
  qt5: install missing Qt5LabsTemplates library
  host-dummy-install-info: new package
  doc: use s/FOO_AUTOCONF/FOO_CONF_OPT/
  rules: remove all _INSTALL_ENV
  ptxd_make_world_init: don't set pkg_install_env
  doc: _MAKE_ENV is empty by default
  doc: improve developer documentation
  ptxd_make_world_install_post: create hard links to save space
  systemd: use UTC for --with-time-epoch
  ptxd_install_fixup_timestamps: use UTC to fix timestamps
  rc-once: set IgnoreOnIsolate=true for rc-once.service
  ptxd_colgen_generate_sections: handle host and cross packages
  rules: normal noprompt host tools should be tristate and default to ALLYES
  strace: version bump 4.10 -> 4.12
  host-qemu: enable virtfs
  host-qemu: fix building with older glibc
  libdrm: version bump 2.4.67 -> 2.4.68

Philipp Zabel (2):
  qt5: version bump 5.6.1 -> 5.6.1-1
  mesalib: version bump 11.1.2 -> 11.2.2

-- 
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- |

___
ptxdist mailing list
ptxdist@pengutronix.de