You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(6) |
Jul
(14) |
Aug
(156) |
Sep
(35) |
Oct
(48) |
Nov
(55) |
Dec
(16) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(24) |
Feb
(154) |
Mar
(139) |
Apr
(175) |
May
(87) |
Jun
(34) |
Jul
(42) |
Aug
(68) |
Sep
(41) |
Oct
(76) |
Nov
(77) |
Dec
(50) |
2008 |
Jan
(98) |
Feb
(43) |
Mar
(102) |
Apr
(27) |
May
(55) |
Jun
(13) |
Jul
(58) |
Aug
(62) |
Sep
(61) |
Oct
(43) |
Nov
(87) |
Dec
(134) |
2009 |
Jan
(175) |
Feb
(106) |
Mar
(58) |
Apr
(41) |
May
(74) |
Jun
(123) |
Jul
(252) |
Aug
(192) |
Sep
(69) |
Oct
(38) |
Nov
(117) |
Dec
(95) |
2010 |
Jan
(146) |
Feb
(76) |
Mar
(90) |
Apr
(60) |
May
(23) |
Jun
(19) |
Jul
(208) |
Aug
(140) |
Sep
(103) |
Oct
(114) |
Nov
(50) |
Dec
(47) |
2011 |
Jan
(59) |
Feb
(47) |
Mar
(61) |
Apr
(58) |
May
(41) |
Jun
(11) |
Jul
(17) |
Aug
(49) |
Sep
(34) |
Oct
(166) |
Nov
(38) |
Dec
(70) |
2012 |
Jan
(87) |
Feb
(37) |
Mar
(28) |
Apr
(25) |
May
(29) |
Jun
(30) |
Jul
(43) |
Aug
(27) |
Sep
(46) |
Oct
(27) |
Nov
(51) |
Dec
(70) |
2013 |
Jan
(92) |
Feb
(34) |
Mar
(58) |
Apr
(37) |
May
(46) |
Jun
(9) |
Jul
(38) |
Aug
(22) |
Sep
(28) |
Oct
(42) |
Nov
(44) |
Dec
(34) |
2014 |
Jan
(63) |
Feb
(39) |
Mar
(48) |
Apr
(31) |
May
(21) |
Jun
(43) |
Jul
(36) |
Aug
(69) |
Sep
(53) |
Oct
(56) |
Nov
(46) |
Dec
(49) |
2015 |
Jan
(63) |
Feb
(35) |
Mar
(30) |
Apr
(38) |
May
(27) |
Jun
(42) |
Jul
(42) |
Aug
(63) |
Sep
(18) |
Oct
(45) |
Nov
(65) |
Dec
(71) |
2016 |
Jan
(54) |
Feb
(79) |
Mar
(59) |
Apr
(38) |
May
(32) |
Jun
(46) |
Jul
(42) |
Aug
(30) |
Sep
(58) |
Oct
(33) |
Nov
(98) |
Dec
(59) |
2017 |
Jan
(79) |
Feb
(12) |
Mar
(43) |
Apr
(32) |
May
(76) |
Jun
(59) |
Jul
(44) |
Aug
(14) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <abe...@us...> - 2016-03-03 17:56:50
|
Revision: 7570 http://sourceforge.net/p/astlinux/code/7570 Author: abelbeck Date: 2016-03-03 17:56:47 +0000 (Thu, 03 Mar 2016) Log Message: ----------- build system, allow RUNNIX to be built on a 64-bit system and still allow 'astlinux-makeimage' to work on 32-bit system Modified Paths: -------------- branches/1.0/boot/syslinux/syslinux.mk branches/1.0/scripts/astlinux-makeimage Modified: branches/1.0/boot/syslinux/syslinux.mk =================================================================== --- branches/1.0/boot/syslinux/syslinux.mk 2016-03-01 16:49:16 UTC (rev 7569) +++ branches/1.0/boot/syslinux/syslinux.mk 2016-03-03 17:56:47 UTC (rev 7570) @@ -13,6 +13,8 @@ SYSLINUX_DEPENDENCIES = host-nasm +HOST_SYSLINUX_DEPENDENCIES = host-nasm + define SYSLINUX_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) CC="$(HOSTCC)" AR="$(HOSTAR)" -C $(@D) endef @@ -26,4 +28,13 @@ done endef +define HOST_SYSLINUX_BUILD_CMDS + $(HOST_MAKE_ENV) $(MAKE) -C $(@D) +endef + +define HOST_SYSLINUX_INSTALL_CMDS + $(INSTALL) -D -m 0755 $(@D)/linux/syslinux $(HOST_DIR)/usr/sbin/syslinux +endef + $(eval $(call GENTARGETS,boot,syslinux)) +$(eval $(call GENTARGETS,boot,syslinux,host)) Modified: branches/1.0/scripts/astlinux-makeimage =================================================================== --- branches/1.0/scripts/astlinux-makeimage 2016-03-01 16:49:16 UTC (rev 7569) +++ branches/1.0/scripts/astlinux-makeimage 2016-03-03 17:56:47 UTC (rev 7570) @@ -9,8 +9,15 @@ HOST_BIN="./output/host/usr/sbin" -# Package host-fdisk builds: -REQUIRED_HOST_CMDS="fdisk" +# +# If the RUNNIX package was built on a x86_64 system, ./syslinux is not executable on a 32-bit build system. +# In such a case, we need to locally build host-syslinux for 32-bit systems, host-fdisk is always needed. +# +if [ "$(uname -m)" != "x86_64" ]; then + REQUIRED_HOST_CMDS="fdisk syslinux" +else + REQUIRED_HOST_CMDS="fdisk" +fi REQUIRED_CMDS="which sudo mkdosfs mkfs losetup gzip" @@ -64,6 +71,12 @@ exit 1 fi +for i in $REQUIRED_HOST_CMDS; do + if [ ! -x "$HOST_BIN/$i" ]; then + make host-$i + fi +done + error=0 for i in $REQUIRED_HOST_CMDS; do if [ ! -x "$HOST_BIN/$i" ]; then @@ -195,10 +208,16 @@ ## " +if [ -x $HOST_BIN/syslinux ]; then + SYSLINUX="$(pwd)/$HOST_BIN/syslinux" +else + SYSLINUX="./syslinux" +fi + # run syslinux and copy the master boot record ( cd ${RUNNIX_DIR} - sudo ./syslinux ${LOOPD}1 + sudo ${SYSLINUX} ${LOOPD}1 sudo bash -c "cat mbr.bin > ${LOOPD}0" ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-01 16:49:18
|
Revision: 7569 http://sourceforge.net/p/astlinux/code/7569 Author: abelbeck Date: 2016-03-01 16:49:16 +0000 (Tue, 01 Mar 2016) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-03-01 16:44:54 UTC (rev 7568) +++ branches/1.0/docs/ChangeLog.txt 2016-03-01 16:49:16 UTC (rev 7569) @@ -16,6 +16,11 @@ ** Networking +-- OpenSSL, version bump to 1.0.1s, security fixes: CVE-2016-0800, CVE-2016-0705, CVE-2016-0798, CVE-2016-0797, + CVE-2016-0799, CVE-2016-0702 + +-- stunnel, version bump to 5.31 + -- miniupnpd, version bump to 1.9.20160222 ** Asterisk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-01 16:44:56
|
Revision: 7568 http://sourceforge.net/p/astlinux/code/7568 Author: abelbeck Date: 2016-03-01 16:44:54 +0000 (Tue, 01 Mar 2016) Log Message: ----------- stunnel, version bump to 5.31 Modified Paths: -------------- branches/1.0/package/stunnel/stunnel-configure.patch branches/1.0/package/stunnel/stunnel.mk Modified: branches/1.0/package/stunnel/stunnel-configure.patch =================================================================== --- branches/1.0/package/stunnel/stunnel-configure.patch 2016-03-01 16:26:47 UTC (rev 7567) +++ branches/1.0/package/stunnel/stunnel-configure.patch 2016-03-01 16:44:54 UTC (rev 7568) @@ -1,6 +1,6 @@ --- stunnel-5.01/configure.ac.orig 2014-04-11 10:43:39.000000000 -0500 +++ stunnel-5.01/configure.ac 2014-04-11 10:49:05.000000000 -0500 -@@ -124,7 +124,8 @@ +@@ -132,7 +132,8 @@ AC_CHECK_FILE("/dev/ptc", AC_DEFINE([HAVE_DEV_PTS_AND_PTC], [1], [Define to 1 if you have '/dev/ptc' device.])) else @@ -10,7 +10,7 @@ fi AC_MSG_NOTICE([**************************************** entropy sources]) -@@ -153,7 +154,9 @@ +@@ -161,7 +162,9 @@ AC_DEFINE_UNQUOTED([RANDOM_FILE], ["$RANDOM_FILE"], [Random file path]) fi else Modified: branches/1.0/package/stunnel/stunnel.mk =================================================================== --- branches/1.0/package/stunnel/stunnel.mk 2016-03-01 16:26:47 UTC (rev 7567) +++ branches/1.0/package/stunnel/stunnel.mk 2016-03-01 16:44:54 UTC (rev 7568) @@ -4,7 +4,7 @@ # ############################################################# -STUNNEL_VERSION = 5.29 +STUNNEL_VERSION = 5.31 STUNNEL_SITE = http://www.usenix.org.uk/mirrors/stunnel/archive/5.x STUNNEL_DEPENDENCIES = openssl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-01 16:26:48
|
Revision: 7567 http://sourceforge.net/p/astlinux/code/7567 Author: abelbeck Date: 2016-03-01 16:26:47 +0000 (Tue, 01 Mar 2016) Log Message: ----------- openssl, version bump to 1.0.1s, removes SSLv2 support, security fixes: CVE-2016-0800 - Cross-protocol attack on TLS using SSLv2 (DROWN) CVE-2016-0705 - Double-free in DSA code CVE-2016-0798 - Memory leak in SRP database lookups CVE-2016-0797 - BN_hex2bn/BN_dec2bn NULL pointer deref/heap corruption CVE-2016-0799 - Fix memory issues in BIO_*printf functions CVE-2016-0702 - Side channel attack on modular exponentiation Modified Paths: -------------- branches/1.0/package/openssl/openssl.mk Modified: branches/1.0/package/openssl/openssl.mk =================================================================== --- branches/1.0/package/openssl/openssl.mk 2016-02-28 23:35:53 UTC (rev 7566) +++ branches/1.0/package/openssl/openssl.mk 2016-03-01 16:26:47 UTC (rev 7567) @@ -4,7 +4,7 @@ # ############################################################# -OPENSSL_VERSION = 1.0.1r +OPENSSL_VERSION = 1.0.1s OPENSSL_SITE = http://www.openssl.org/source OPENSSL_INSTALL_STAGING = YES OPENSSL_DEPENDENCIES = zlib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-28 23:35:55
|
Revision: 7566 http://sourceforge.net/p/astlinux/code/7566 Author: abelbeck Date: 2016-02-28 23:35:53 +0000 (Sun, 28 Feb 2016) Log Message: ----------- qemu, tweaks from Darid Kerr Modified Paths: -------------- branches/1.0/package/qemu/Config.in branches/1.0/package/qemu/qemu.mk Added Paths: ----------- branches/1.0/package/qemu/bridge.conf Modified: branches/1.0/package/qemu/Config.in =================================================================== --- branches/1.0/package/qemu/Config.in 2016-02-28 00:11:39 UTC (rev 7565) +++ branches/1.0/package/qemu/Config.in 2016-02-28 23:35:53 UTC (rev 7566) @@ -28,6 +28,14 @@ http://qemu.org/ + Required Kernel Config: + CONFIG_VIRTUALIZATION=y + CONFIG_KVM=m + CONFIG_KVM_INTEL=m + CONFIG_KVM_AMD=m + CONFIG_VHOST_NET=m + + if BR2_PACKAGE_QEMU comment "QEMU Emulators selection" @@ -92,6 +100,7 @@ config BR2_PACKAGE_QEMU_SYSTEM_VNC bool "Enable system VNC" + default y help Say 'y' to build VNC display. Added: branches/1.0/package/qemu/bridge.conf =================================================================== --- branches/1.0/package/qemu/bridge.conf (rev 0) +++ branches/1.0/package/qemu/bridge.conf 2016-02-28 23:35:53 UTC (rev 7566) @@ -0,0 +1,22 @@ +## +## bridge.conf for AstLinux +## Access Control (ACL) for QEMU access to network bridges +## Detailed description can be found at: +## http://git.qemu.org/?p=qemu.git;a=commit;h=bdef79a2994d6f0383e07e9597675711662b3031 +## +## AstLinux admin should create a bridge network to the internal LAN interface. +## This can be done in user.conf with, for example, the line... +## BRIDGE1="eth1 eth2" +## In this case bridging two physical interfaces together, but you could just bridge to one. +## This creates "br1" which you should select as the internal interface in the network tab of AstLinux Web Interface. +## +## Then in this file permit qemu to access the bridge... (uncomment) +#allow br1 +## +## More complex ACL using deny and include statements possible. See above link. +## +## When invoking QEMU the network device is created with these flags... +## -netdev bridge,id=nd1,br=br1 +## -device virtio-net-pci,netdev=nd1,id=nic1,mac=52:54:00:xx:yy:yy +## Be sure to select a random mac address, if unspecified then qemu will default to 52:54:00:12:34:56 +## Modified: branches/1.0/package/qemu/qemu.mk =================================================================== --- branches/1.0/package/qemu/qemu.mk 2016-02-28 00:11:39 UTC (rev 7565) +++ branches/1.0/package/qemu/qemu.mk 2016-02-28 23:35:53 UTC (rev 7566) @@ -76,6 +76,7 @@ ./configure \ --prefix=/usr \ --cross-prefix=$(TARGET_CROSS) \ + --sysconfdir=/etc \ --with-system-pixman \ --audio-drv-list= \ --enable-kvm \ @@ -111,6 +112,16 @@ define QEMU_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(QEMU_MAKE_ENV) DESTDIR=$(TARGET_DIR) install + $(INSTALL) -m 0644 -D package/qemu/bridge.conf $(TARGET_DIR)/etc/qemu/bridge.conf + if [ -f $(TARGET_DIR)/usr/bin/qemu-system-x86_64 ]; then \ + ln -sf qemu-system-x86_64 $(TARGET_DIR)/usr/bin/qemu ; \ + fi endef +define QEMU_UNINSTALL_TARGET_CMDS + rm -rf $(TARGET_DIR)/etc/qemu + rm -f $(TARGET_DIR)/usr/bin/qemu + rm -f $(TARGET_DIR)/usr/bin/qemu-* +endef + $(eval $(call GENTARGETS,package,qemu)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-28 00:11:41
|
Revision: 7565 http://sourceforge.net/p/astlinux/code/7565 Author: abelbeck Date: 2016-02-28 00:11:39 +0000 (Sun, 28 Feb 2016) Log Message: ----------- Bump the tmpfs limits for upgrade-run-image and upgrade-asterisk-sounds Modified Paths: -------------- branches/1.0/package/asterisk/upgrade-asterisk-sounds branches/1.0/project/astlinux/target_skeleton/usr/sbin/upgrade-run-image Modified: branches/1.0/package/asterisk/upgrade-asterisk-sounds =================================================================== --- branches/1.0/package/asterisk/upgrade-asterisk-sounds 2016-02-27 23:30:31 UTC (rev 7564) +++ branches/1.0/package/asterisk/upgrade-asterisk-sounds 2016-02-28 00:11:39 UTC (rev 7565) @@ -41,7 +41,7 @@ mount_tmpfs_snd() { mkdir /tmp/snd >/dev/null - if ! mount -t tmpfs -o size=64m none /tmp/snd >/dev/null; then + if ! mount -t tmpfs -o size=76m none /tmp/snd >/dev/null; then rmdir /tmp/snd return 1 fi Modified: branches/1.0/project/astlinux/target_skeleton/usr/sbin/upgrade-run-image =================================================================== --- branches/1.0/project/astlinux/target_skeleton/usr/sbin/upgrade-run-image 2016-02-27 23:30:31 UTC (rev 7564) +++ branches/1.0/project/astlinux/target_skeleton/usr/sbin/upgrade-run-image 2016-02-28 00:11:39 UTC (rev 7565) @@ -32,7 +32,7 @@ mount_tmpfs_up() { mkdir /tmp/up >/dev/null - if ! mount -t tmpfs -o size=56m none /tmp/up >/dev/null; then + if ! mount -t tmpfs -o size=76m none /tmp/up >/dev/null; then rmdir /tmp/up return 1 fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-27 23:30:34
|
Revision: 7564 http://sourceforge.net/p/astlinux/code/7564 Author: abelbeck Date: 2016-02-27 23:30:31 +0000 (Sat, 27 Feb 2016) Log Message: ----------- add qemu package, a favor for David Kerr for a project he is working on Modified Paths: -------------- branches/1.0/astlinux-ast11.config branches/1.0/astlinux-ast13.config branches/1.0/astlinux18.config branches/1.0/initrd.config branches/1.0/package/Config.in branches/1.0/package/libffi/libffi.mk branches/1.0/package/libglib2/Config.in branches/1.0/package/libglib2/libglib2.mk branches/1.0/package/pixman/pixman.mk branches/1.0/runnix-iso.config branches/1.0/runnix.config branches/1.0/x86_64-configs/astlinux-ast11.config branches/1.0/x86_64-configs/astlinux-ast13.config branches/1.0/x86_64-configs/astlinux18.config branches/1.0/x86_64-configs/initrd.config Added Paths: ----------- branches/1.0/package/libffi/libffi-0001-Fix-installation-location-of-libffi.patch branches/1.0/package/libglib2/libglib2-0001-fix-compile-time-atomic-detection.patch branches/1.0/package/libglib2/libglib2-0002-disable-tests.patch branches/1.0/package/pixman/pixman-0001-Disable-tests.patch branches/1.0/package/pixman/pixman-0002-pixman-private-include-float.h-only-in-C-code.patch branches/1.0/package/qemu/ branches/1.0/package/qemu/Config.in branches/1.0/package/qemu/qemu.mk Removed Paths: ------------- branches/1.0/package/libglib2/libglib2-fix-compilation-with-no-builtin-atomic.patch branches/1.0/package/libglib2/libglib2-optional-ipv6.patch branches/1.0/package/pixman/pixman-0.10.0-no-tests.patch Modified: branches/1.0/astlinux-ast11.config =================================================================== --- branches/1.0/astlinux-ast11.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/astlinux-ast11.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:26 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -670,6 +670,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/astlinux-ast13.config =================================================================== --- branches/1.0/astlinux-ast13.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/astlinux-ast13.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:26 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -670,6 +670,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/astlinux18.config =================================================================== --- branches/1.0/astlinux18.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/astlinux18.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:26 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -670,6 +670,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/initrd.config =================================================================== --- branches/1.0/initrd.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/initrd.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:26 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -550,6 +550,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set Modified: branches/1.0/package/Config.in =================================================================== --- branches/1.0/package/Config.in 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/Config.in 2016-02-27 23:30:31 UTC (rev 7564) @@ -435,6 +435,7 @@ menu "Miscellaneous" source "package/htpasswd/Config.in" source "package/mac2vendor/Config.in" +source "package/qemu/Config.in" source "package/shared-mime-info/Config.in" source "package/zoneinfo/Config.in" endmenu Added: branches/1.0/package/libffi/libffi-0001-Fix-installation-location-of-libffi.patch =================================================================== --- branches/1.0/package/libffi/libffi-0001-Fix-installation-location-of-libffi.patch (rev 0) +++ branches/1.0/package/libffi/libffi-0001-Fix-installation-location-of-libffi.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -0,0 +1,54 @@ +From 580f46a7bc6e9fea3a2227b5268cc3aed1d60e3b Mon Sep 17 00:00:00 2001 +From: Thomas Petazzoni <tho...@fr...> +Date: Thu, 7 Feb 2013 22:26:56 +0100 +Subject: [PATCH] Fix installation location of libffi +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +The libffi is currently declared as toolexeclib_LTLIBRARIES. In many +cases, toolexeclib libraries will be installed in /usr/lib, so it +doesn't make any difference. + +However, with multilib toolchains, they get installed in a +subdirectory of /usr/lib/. For example, with a Sourcery CodeBench +PowerPC toolchain, if the e500mc multilib variant is used, the libffi +library gets installed in /usr/lib/te500mc/. This is due to the +following code in the configure script: + + multi_os_directory=`$CC -print-multi-os-directory` + case $multi_os_directory in + .) ;; # Avoid trailing /. + *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;; + esac + +Once the library is installed in /usr/lib/te500mc/, nothing works +because this installation location is inconsistent with the +installation location declared in libffi.pc. + +So, instead of using this bizarre toolexeclib_LTLIBRARIES, simply use +the more standard lib_LTLIBRARIES, which ensures that the libffi +library is always installed in /usr/lib. + +Signed-off-by: Thomas Petazzoni <tho...@fr...> +[unfuzz for 3.2.1] +Signed-off-by: Jörg Krause <joe...@em...cks> +--- + Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile.am b/Makefile.am +index 0e40451..309474c 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -104,7 +104,7 @@ FLAGS_TO_PASS = $(AM_MAKEFLAGS) + + MAKEOVERRIDES= + +-toolexeclib_LTLIBRARIES = libffi.la ++lib_LTLIBRARIES = libffi.la + noinst_LTLIBRARIES = libffi_convenience.la + + libffi_la_SOURCES = src/prep_cif.c src/types.c \ +-- +2.5.3 Modified: branches/1.0/package/libffi/libffi.mk =================================================================== --- branches/1.0/package/libffi/libffi.mk 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/libffi/libffi.mk 2016-02-27 23:30:31 UTC (rev 7564) @@ -4,30 +4,33 @@ # ############################################################# -LIBFFI_VERSION = 3.0.9 -LIBFFI_SITE = ftp://sources.redhat.com/pub/libffi/ +LIBFFI_VERSION = 3.2.1 +LIBFFI_SITE = ftp://sourceware.org/pub/libffi LIBFFI_INSTALL_STAGING = YES +LIBFFI_AUTORECONF = YES # Move the headers to the usual location, and adjust the .pc file # accordingly -define LIBFFI_MOVE_STAGING_HEADERS - mv $(STAGING_DIR)/usr/lib/libffi-*/include/*.h $(STAGING_DIR)/usr/include/ - sed -i '/^includedir.*/d' $(STAGING_DIR)/usr/lib/pkgconfig/libffi.pc - rm -rf $(TARGET_DIR)/usr/lib/libffi-* +define LIBFFI_MOVE_HEADERS + mv $(1)/usr/lib/libffi-$(LIBFFI_VERSION)/include/*.h $(1)/usr/include/ + $(SED) '/^includedir.*/d' -e '/^Cflags:.*/d' \ + $(1)/usr/lib/pkgconfig/libffi.pc + rm -rf $(1)/usr/lib/libffi-* endef +LIBFFI_MOVE_STAGING_HEADERS = $(call LIBFFI_MOVE_HEADERS,$(STAGING_DIR)) LIBFFI_POST_INSTALL_STAGING_HOOKS += LIBFFI_MOVE_STAGING_HEADERS -# Similar for target headers -define LIBFFI_MOVE_TARGET_HEADERS - install -d $(TARGET_DIR)/usr/include/ - mv $(TARGET_DIR)/usr/lib/libffi-*/include/*.h $(TARGET_DIR)/usr/include/ - sed -i '/^includedir.*/d' $(TARGET_DIR)/usr/lib/pkgconfig/libffi.pc - rm -rf $(TARGET_DIR)/usr/lib/libffi-* +HOST_LIBFFI_MOVE_HOST_HEADERS = $(call LIBFFI_MOVE_HEADERS,$(HOST_DIR)) +HOST_LIBFFI_POST_INSTALL_HOOKS += HOST_LIBFFI_MOVE_HOST_HEADERS + +# Remove headers that are not at the usual location from the target +define LIBFFI_REMOVE_TARGET_HEADERS + rm -rf $(TARGET_DIR)/usr/lib/libffi-$(LIBFFI_VERSION) endef -LIBFFI_POST_INSTALL_TARGET_HOOKS += LIBFFI_MOVE_TARGET_HEADERS +LIBFFI_POST_INSTALL_TARGET_HOOKS += LIBFFI_REMOVE_TARGET_HEADERS $(eval $(call AUTOTARGETS,package,libffi)) - +$(eval $(call AUTOTARGETS,package,libffi,host)) Modified: branches/1.0/package/libglib2/Config.in =================================================================== --- branches/1.0/package/libglib2/Config.in 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/libglib2/Config.in 2016-02-27 23:30:31 UTC (rev 7564) @@ -3,6 +3,7 @@ select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE + select BR2_PACKAGE_LIBFFI select BR2_PACKAGE_ZLIB depends on BR2_USE_WCHAR # gettext help Added: branches/1.0/package/libglib2/libglib2-0001-fix-compile-time-atomic-detection.patch =================================================================== --- branches/1.0/package/libglib2/libglib2-0001-fix-compile-time-atomic-detection.patch (rev 0) +++ branches/1.0/package/libglib2/libglib2-0001-fix-compile-time-atomic-detection.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -0,0 +1,27 @@ +[PATCH] Fix compilation issues on architectures with limited atomic support + +Improved compile-time detection of atomic support in the compiler. + +Upstream-Status: submitted +See : https://bugzilla.gnome.org/show_bug.cgi?id=752731 + +Signed-off-by: Brendan Heading <bre...@gm...> +--- + glib/gthread-posix.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c +index ae5d805..8db8557 100644 +--- a/glib/gthread-posix.c ++++ b/glib/gthread-posix.c +@@ -67,7 +67,7 @@ + #endif + + /* clang defines __ATOMIC_SEQ_CST but doesn't support the GCC extension */ +-#if defined(HAVE_FUTEX) && defined(__ATOMIC_SEQ_CST) && !defined(__clang__) ++#if defined(HAVE_FUTEX) && defined(__ATOMIC_SEQ_CST) && defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4) && !defined(__clang__) + #define USE_NATIVE_MUTEX + #endif + +-- +2.4.3 Added: branches/1.0/package/libglib2/libglib2-0002-disable-tests.patch =================================================================== --- branches/1.0/package/libglib2/libglib2-0002-disable-tests.patch (rev 0) +++ branches/1.0/package/libglib2/libglib2-0002-disable-tests.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -0,0 +1,43 @@ +Disable tests, some of them need python and sometimes host-python +gets mixed with distro python leading to build failures. + +Signed-off-by: Gustavo Zacarias <gus...@fr...> + +diff -Nura glib-2.46.1.orig/gio/Makefile.am glib-2.46.1/gio/Makefile.am +--- glib-2.46.1.orig/gio/Makefile.am 2015-10-20 16:59:03.042212468 -0300 ++++ glib-2.46.1/gio/Makefile.am 2015-10-20 17:32:26.763146133 -0300 +@@ -233,7 +233,7 @@ + platform_deps += win32/libgiowin32.la + endif + +-SUBDIRS += . tests ++SUBDIRS += . + + if HAVE_FAM + SUBDIRS += fam +diff -Nura glib-2.46.1.orig/glib/Makefile.am glib-2.46.1/glib/Makefile.am +--- glib-2.46.1.orig/glib/Makefile.am 2015-10-20 16:59:03.066213318 -0300 ++++ glib-2.46.1/glib/Makefile.am 2015-10-20 17:33:23.537155988 -0300 +@@ -33,8 +33,8 @@ + MAYBE_PCRE = pcre + endif + +-SUBDIRS = libcharset $(PRINTF_SUBDIR) $(MAYBE_PCRE) update-pcre . tests +-DIST_SUBDIRS = libcharset gnulib pcre update-pcre tests ++SUBDIRS = libcharset $(PRINTF_SUBDIR) $(MAYBE_PCRE) update-pcre . ++DIST_SUBDIRS = libcharset gnulib pcre update-pcre + + AM_CPPFLAGS = \ + $(glib_INCLUDES) \ +diff -Nura glib-2.46.1.orig/Makefile.am glib-2.46.1/Makefile.am +--- glib-2.46.1.orig/Makefile.am 2015-10-20 16:59:03.003211087 -0300 ++++ glib-2.46.1/Makefile.am 2015-10-20 17:32:20.923939420 -0300 +@@ -6,7 +6,7 @@ + + ACLOCAL_AMFLAGS = -I m4macros ${ACLOCAL_FLAGS} + +-SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs tests ++SUBDIRS = . m4macros glib gmodule gthread gobject gio po docs + DIST_SUBDIRS = $(SUBDIRS) build + + bin_SCRIPTS = glib-gettextize Deleted: branches/1.0/package/libglib2/libglib2-fix-compilation-with-no-builtin-atomic.patch =================================================================== --- branches/1.0/package/libglib2/libglib2-fix-compilation-with-no-builtin-atomic.patch 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/libglib2/libglib2-fix-compilation-with-no-builtin-atomic.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,25 +0,0 @@ -From 58096320ea0888c4fbbff318839017a4d2e82703 Mon Sep 17 00:00:00 2001 -From: Lionel Landwerlin <lla...@gm...> -Date: Sat, 6 Nov 2010 14:56:15 +0100 -Subject: [PATCH] glib: fix compilation with no builtin atomic operations compilers - -Signed-off-by: Lionel Landwerlin <lla...@gm...> ---- - glib/gatomic.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/glib/gatomic.c b/glib/gatomic.c -index 845c866..01468ce 100644 ---- a/glib/gatomic.c -+++ b/glib/gatomic.c -@@ -881,6 +881,7 @@ g_atomic_pointer_compare_and_exchange (volatile gpointer G_GNUC_MAY_ALIAS *atomi - #endif /* DEFINE_WITH_WIN32_INTERLOCKED */ - - #ifdef DEFINE_WITH_MUTEXES -+# include "gthread.h" - /* We have to use the slow, but safe locking method */ - static GMutex *g_atomic_mutex; - --- -1.7.2.3 - Deleted: branches/1.0/package/libglib2/libglib2-optional-ipv6.patch =================================================================== --- branches/1.0/package/libglib2/libglib2-optional-ipv6.patch 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/libglib2/libglib2-optional-ipv6.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,53 +0,0 @@ -[PATCH]: fix build on uClibc without IPv6 support - -Signed-off-by: Peter Korsgaard <ja...@su...> ---- - gio/ginetaddress.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -Index: glib-2.26.0/gio/ginetaddress.c -=================================================================== ---- glib-2.26.0.orig/gio/ginetaddress.c -+++ glib-2.26.0/gio/ginetaddress.c -@@ -21,6 +21,7 @@ - * Samuel Cormier-Iijima <sci...@gm...> - */ - -+#include <features.h> - #include <config.h> - - #include <string.h> -@@ -434,7 +435,11 @@ - return NULL; - } - -+#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_IPV6__) -+#define G_INET_ADDRESS_FAMILY_IS_VALID(family) ((family) == AF_INET) -+#else - #define G_INET_ADDRESS_FAMILY_IS_VALID(family) ((family) == AF_INET || (family) == AF_INET6) -+#endif - - /** - * g_inet_address_new_from_bytes: -@@ -483,8 +488,10 @@ - - return g_inet_address_new_from_bytes (addr, family); - } -+#if !(defined(__UCLIBC__) && !defined(__UCLIBC_HAS_IPV6__)) - else - return g_inet_address_new_from_bytes (in6addr_loopback.s6_addr, family); -+#endif - } - - /** -@@ -510,8 +517,10 @@ - - return g_inet_address_new_from_bytes (addr, family); - } -+#if !(defined(__UCLIBC__) && !defined(__UCLIBC_HAS_IPV6__)) - else - return g_inet_address_new_from_bytes (in6addr_any.s6_addr, family); -+#endif - } - - Modified: branches/1.0/package/libglib2/libglib2.mk =================================================================== --- branches/1.0/package/libglib2/libglib2.mk 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/libglib2/libglib2.mk 2016-02-27 23:30:31 UTC (rev 7564) @@ -3,64 +3,104 @@ # libglib2 # ############################################################# -LIBGLIB2_VERSION_MAJOR = 2.28 -LIBGLIB2_VERSION_MINOR = 8 -LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).$(LIBGLIB2_VERSION_MINOR) -LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.bz2 +LIBGLIB2_VERSION_MAJOR = 2.46 +LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).2 +LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.xz LIBGLIB2_SITE = http://ftp.gnome.org/pub/gnome/sources/glib/$(LIBGLIB2_VERSION_MAJOR) LIBGLIB2_INSTALL_STAGING = YES -LIBGLIB2_INSTALL_TARGET = YES LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install -LIBGLIB2_CONF_ENV = \ - ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \ - glib_cv_uscore=no ac_cv_func_strtod=yes \ - ac_fsusage_space=yes fu_cv_sys_stat_statfs2_bsize=yes \ - ac_cv_func_closedir_void=no ac_cv_func_getloadavg=no \ - ac_cv_lib_util_getloadavg=no ac_cv_lib_getloadavg_getloadavg=no \ - ac_cv_func_getgroups=yes ac_cv_func_getgroups_works=yes \ - ac_cv_func_chown_works=yes ac_cv_have_decl_euidaccess=no \ - ac_cv_func_euidaccess=no ac_cv_have_decl_strnlen=yes \ - ac_cv_func_strnlen_working=yes ac_cv_func_lstat_dereferences_slashed_symlink=yes \ - ac_cv_func_lstat_empty_string_bug=no ac_cv_func_stat_empty_string_bug=no \ - vb_cv_func_rename_trailing_slash_bug=no ac_cv_have_decl_nanosleep=yes \ - jm_cv_func_nanosleep_works=yes gl_cv_func_working_utimes=yes \ - ac_cv_func_utime_null=yes ac_cv_have_decl_strerror_r=yes \ - ac_cv_func_strerror_r_char_p=no jm_cv_func_svid_putenv=yes \ - ac_cv_func_getcwd_null=yes ac_cv_func_getdelim=yes \ - ac_cv_func_mkstemp=yes utils_cv_func_mkstemp_limitations=no \ - utils_cv_func_mkdir_trailing_slash_bug=no \ - jm_cv_func_gettimeofday_clobber=no \ - gl_cv_func_working_readdir=yes jm_ac_cv_func_link_follows_symlink=no \ - utils_cv_localtime_cache=no ac_cv_struct_st_mtim_nsec=no \ - gl_cv_func_tzset_clobber=no gl_cv_func_getcwd_null=yes \ - gl_cv_func_getcwd_path_max=yes ac_cv_func_fnmatch_gnu=yes \ - am_getline_needs_run_time_check=no am_cv_func_working_getline=yes \ - gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \ - ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \ - ac_use_included_regex=no gl_cv_c_restrict=no \ - ac_cv_path_GLIB_GENMARSHAL=$(HOST_DIR)/usr/bin/glib-genmarshal ac_cv_prog_F77=no \ - ac_cv_func_posix_getgrgid_r=no \ - gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no) +LIBGLIB2_CONF_ENV = \ + ac_cv_func_posix_getpwuid_r=yes \ + glib_cv_stack_grows=no \ + glib_cv_uscore=no \ + ac_cv_func_strtod=yes \ + ac_fsusage_space=yes \ + fu_cv_sys_stat_statfs2_bsize=yes \ + ac_cv_func_closedir_void=no \ + ac_cv_func_getloadavg=no \ + ac_cv_lib_util_getloadavg=no \ + ac_cv_lib_getloadavg_getloadavg=no \ + ac_cv_func_getgroups=yes \ + ac_cv_func_getgroups_works=yes \ + ac_cv_func_chown_works=yes \ + ac_cv_have_decl_euidaccess=no \ + ac_cv_func_euidaccess=no \ + ac_cv_have_decl_strnlen=yes \ + ac_cv_func_strnlen_working=yes \ + ac_cv_func_lstat_dereferences_slashed_symlink=yes \ + ac_cv_func_lstat_empty_string_bug=no \ + ac_cv_func_stat_empty_string_bug=no \ + vb_cv_func_rename_trailing_slash_bug=no \ + ac_cv_have_decl_nanosleep=yes \ + jm_cv_func_nanosleep_works=yes \ + gl_cv_func_working_utimes=yes \ + ac_cv_func_utime_null=yes \ + ac_cv_have_decl_strerror_r=yes \ + ac_cv_func_strerror_r_char_p=no \ + jm_cv_func_svid_putenv=yes \ + ac_cv_func_getcwd_null=yes \ + ac_cv_func_getdelim=yes \ + ac_cv_func_mkstemp=yes \ + utils_cv_func_mkstemp_limitations=no \ + utils_cv_func_mkdir_trailing_slash_bug=no \ + jm_cv_func_gettimeofday_clobber=no \ + gl_cv_func_working_readdir=yes \ + jm_ac_cv_func_link_follows_symlink=no \ + utils_cv_localtime_cache=no \ + ac_cv_struct_st_mtim_nsec=no \ + gl_cv_func_tzset_clobber=no \ + gl_cv_func_getcwd_null=yes \ + gl_cv_func_getcwd_path_max=yes \ + ac_cv_func_fnmatch_gnu=yes \ + am_getline_needs_run_time_check=no \ + am_cv_func_working_getline=yes \ + gl_cv_func_mkdir_trailing_slash_bug=no \ + gl_cv_func_mkstemp_limitations=no \ + ac_cv_func_working_mktime=yes \ + jm_cv_func_working_re_compile_pattern=yes \ + ac_use_included_regex=no \ + gl_cv_c_restrict=no \ + ac_cv_path_GLIB_GENMARSHAL=$(HOST_DIR)/usr/bin/glib-genmarshal \ + ac_cv_prog_F77=no \ + ac_cv_func_posix_getgrgid_r=no \ + glib_cv_long_long_format=ll \ + ac_cv_func_printf_unix98=yes \ + ac_cv_func_vsnprintf_c99=yes \ + ac_cv_func_newlocale=no \ + ac_cv_func_uselocale=no \ + ac_cv_func_strtod_l=no \ + ac_cv_func_strtoll_l=no \ + ac_cv_func_strtoull_l=no \ + gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no) HOST_LIBGLIB2_CONF_OPT = \ - --disable-gtk-doc \ - --enable-debug=no \ + --disable-coverage \ + --disable-dtrace \ + --disable-fam \ + --disable-libelf \ + --disable-selinux \ + --disable-systemtap \ + --disable-xattr -LIBGLIB2_DEPENDENCIES = host-pkg-config host-libglib2 zlib $(if $(BR2_NEEDS_GETTEXT),gettext libintl) +LIBGLIB2_DEPENDENCIES = host-pkg-config host-libglib2 libffi zlib $(if $(BR2_NEEDS_GETTEXT),gettext libintl) -HOST_LIBGLIB2_DEPENDENCIES = host-pkg-config host-zlib +HOST_LIBGLIB2_DEPENDENCIES = host-pkg-config host-libffi host-zlib ifneq ($(BR2_ENABLE_LOCALE),y) -LIBGLIB2_DEPENDENCIES+=libiconv +LIBGLIB2_DEPENDENCIES += libiconv endif +LIBGLIB2_CONF_OPT += --disable-libelf + ifeq ($(BR2_PACKAGE_LIBICONV),y) LIBGLIB2_CONF_OPT += --with-libiconv=gnu -LIBGLIB2_DEPENDENCIES+=libiconv +LIBGLIB2_DEPENDENCIES += libiconv endif +LIBGLIB2_CONF_OPT += --with-pcre=internal + define LIBGLIB2_REMOVE_DEV_FILES rm -rf $(TARGET_DIR)/usr/lib/glib-2.0 rm -rf $(TARGET_DIR)/usr/share/glib-2.0/gettext @@ -68,9 +108,7 @@ rm -f $(addprefix $(TARGET_DIR)/usr/bin/,glib-genmarshal glib-gettextize glib-mkenums gobject-query gtester gtester-report) endef -ifneq ($(BR2_HAVE_DEVFILES),y) LIBGLIB2_POST_INSTALL_TARGET_HOOKS += LIBGLIB2_REMOVE_DEV_FILES -endif define LIBGLIB2_REMOVE_GDB_FILES rm -rf $(TARGET_DIR)/usr/share/glib-2.0/gdb Deleted: branches/1.0/package/pixman/pixman-0.10.0-no-tests.patch =================================================================== --- branches/1.0/package/pixman/pixman-0.10.0-no-tests.patch 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/pixman/pixman-0.10.0-no-tests.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,11 +0,0 @@ ---- a/Makefile.in.orig 2008-05-23 14:04:37.000000000 +0000 -+++ b/Makefile.in 2008-05-23 14:04:50.000000000 +0000 -@@ -198,7 +198,7 @@ sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --SUBDIRS = pixman test -+SUBDIRS = pixman - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = pixman-1.pc - USERNAME = $$USER Added: branches/1.0/package/pixman/pixman-0001-Disable-tests.patch =================================================================== --- branches/1.0/package/pixman/pixman-0001-Disable-tests.patch (rev 0) +++ branches/1.0/package/pixman/pixman-0001-Disable-tests.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -0,0 +1,28 @@ +From 9b8132738c364fc3c886e81e7d383aaff80dc867 Mon Sep 17 00:00:00 2001 +From: "Yann E. MORIN" <yan...@fr...> +Date: Sat, 5 Dec 2015 12:00:53 +0100 +Subject: [PATCH] Disable tests + +Tests are causing build failures on some architectures that are missing +a proper fenv.h, so just disable them. + +Signed-off-by: "Yann E. MORIN" <yan...@fr...> + +--- +Status: Buildroot specific, not suitable for upstream in this state. +--- + Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile.am b/Makefile.am +index 5137c9e..eae79fd 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,4 +1,4 @@ +-SUBDIRS = pixman demos test ++SUBDIRS = pixman demos + + pkgconfigdir=$(libdir)/pkgconfig + pkgconfig_DATA=pixman-1.pc +-- +1.9.1 Added: branches/1.0/package/pixman/pixman-0002-pixman-private-include-float.h-only-in-C-code.patch =================================================================== --- branches/1.0/package/pixman/pixman-0002-pixman-private-include-float.h-only-in-C-code.patch (rev 0) +++ branches/1.0/package/pixman/pixman-0002-pixman-private-include-float.h-only-in-C-code.patch 2016-02-27 23:30:31 UTC (rev 7564) @@ -0,0 +1,45 @@ +From 2a5b33fe5cb921993573392afac19185e224b49a Mon Sep 17 00:00:00 2001 +From: Thomas Petazzoni <tho...@fr...> +Date: Sun, 17 Jan 2016 14:14:28 +0100 +Subject: [PATCH] pixman-private: include <float.h> only in C code + +<float.h> is included unconditionally by pixman-private.h, which in +turn gets included by assembler files. Unfortunately, with certain C +libraries (like the musl C library), <float.h> cannot be included in +assembler files: + + CCLD libpixman-arm-simd.la +/home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h: Assembler messages: +/home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h:8: Error: bad instruction `int __flt_rounds(void)' +/home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h: Assembler messages: +/home/test/buildroot/output/host/usr/arm-buildroot-linux-musleabihf/sysroot/usr/include/float.h:8: Error: bad instruction `int __flt_rounds(void)' + +It turns out however that <float.h> is not needed by assembly files, +so we move its inclusion within the #ifndef __ASSEMBLER__ condition, +which solves the problem. + +Signed-off-by: Thomas Petazzoni <tho...@fr...> +--- + pixman/pixman-private.h | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/pixman/pixman-private.h b/pixman/pixman-private.h +index 73108a0..73a5414 100644 +--- a/pixman/pixman-private.h ++++ b/pixman/pixman-private.h +@@ -1,5 +1,3 @@ +-#include <float.h> +- + #ifndef PIXMAN_PRIVATE_H + #define PIXMAN_PRIVATE_H + +@@ -30,6 +28,7 @@ + #include <stdio.h> + #include <string.h> + #include <stddef.h> ++#include <float.h> + + #include "pixman-compiler.h" + +-- +2.6.4 Modified: branches/1.0/package/pixman/pixman.mk =================================================================== --- branches/1.0/package/pixman/pixman.mk 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/package/pixman/pixman.mk 2016-02-27 23:30:31 UTC (rev 7564) @@ -3,11 +3,19 @@ # pixman # ################################################################################ -PIXMAN_VERSION = 0.17.6 -PIXMAN_SOURCE = pixman-$(PIXMAN_VERSION).tar.gz -PIXMAN_SITE = http://cairographics.org/releases/ -PIXMAN_AUTORECONF = NO + +PIXMAN_VERSION = 0.34.0 +PIXMAN_SOURCE = pixman-$(PIXMAN_VERSION).tar.bz2 +PIXMAN_SITE = http://xorg.freedesktop.org/releases/individual/lib + PIXMAN_INSTALL_STAGING = YES +PIXMAN_DEPENDENCIES = host-pkg-config +# For 0001-Disable-tests.patch +PIXMAN_AUTORECONF = YES + +# don't build gtk based demos +PIXMAN_CONF_OPT = --disable-gtk + $(eval $(call AUTOTARGETS,package,pixman)) $(eval $(call AUTOTARGETS,package,pixman,host)) Added: branches/1.0/package/qemu/Config.in =================================================================== --- branches/1.0/package/qemu/Config.in (rev 0) +++ branches/1.0/package/qemu/Config.in 2016-02-27 23:30:31 UTC (rev 7564) @@ -0,0 +1,98 @@ +comment "QEMU requires a toolchain with wchar, threads" + depends on BR2_USE_MMU + depends on !(BR2_TOOLCHAIN_HAS_THREADS && BR2_USE_WCHAR) + +config BR2_PACKAGE_QEMU + bool "QEMU" + depends on BR2_TOOLCHAIN_HAS_THREADS + depends on BR2_USE_WCHAR # gettext + depends on BR2_USE_MMU # fork() + select BR2_PACKAGE_LIBGLIB2 + select BR2_PACKAGE_PIXMAN + select BR2_PACKAGE_ZLIB + select BR2_PACKAGE_UTIL_LINUX + select BR2_PACKAGE_UTIL_LINUX_LIBUUID + help + QEMU is a generic and open source machine emulator and virtualizer. + + When used as a machine emulator, QEMU can run OSes and programs made + for one machine (e.g. an ARM board) on a different machine (e.g. + your own PC). By using dynamic translation, it achieves very good + performance. + + When used as a virtualizer, QEMU achieves near native performances + by executing the guest code directly on the host CPU. QEMU supports + virtualization when executing under the Xen hypervisor or using the + KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, + server and embedded PowerPC, and S390 guests. + + http://qemu.org/ + +if BR2_PACKAGE_QEMU + +comment "QEMU Emulators selection" + +config BR2_PACKAGE_QEMU_CUSTOM_TARGETS + string "Enable specific targets" + default "x86_64-softmmu" + help + Enter here the list of QEMU targets you want to build. For example: + + System emulation | User-land emulation + ----------------------+----------------------- + i386-softmmu | i386-linux-user + arm-softmmu | ppc-linux-user + x86_64-softmmu | sparc-bsd-user + ... | ... + +config QEMU_FOO + bool # To break the indentation + +if BR2_PACKAGE_QEMU_CUSTOM_TARGETS = "" + +comment "... or you can select emulator families to enable, below:" + +config BR2_PACKAGE_QEMU_SYSTEM + bool "Enable all systems emulation" + help + Say 'y' to build all system emulators/virtualisers that QEMU supports. + +config BR2_PACKAGE_QEMU_LINUX_USER + bool "Enable all Linux user-land emulation" + help + Say 'y' to build all Linux user-land emulators that QEMU supports. + +# Note: bsd-user can not be build on Linux + +endif # BR2_PACKAGE_QEMU_CUSTOM_TARGETS == "" + +config BR2_PACKAGE_QEMU_HAS_EMULS + def_bool y + depends on BR2_PACKAGE_QEMU_SYSTEM || BR2_PACKAGE_QEMU_LINUX_USER || BR2_PACKAGE_QEMU_CUSTOM_TARGETS != "" + +if BR2_PACKAGE_QEMU_HAS_EMULS + +comment "QEMU Frontends" + +config BR2_PACKAGE_QEMU_SDL + bool "Enable SDL frontend" + select BR2_PACKAGE_SDL + help + Say 'y' to enable the SDL frontend, that is, a graphical window + presenting the VM's display. + +endif # BR2_PACKAGE_QEMU_HAS_EMULS + +comment "QEMU System Options" + +config BR2_PACKAGE_QEMU_SYSTEM_TOOLS + bool "Enable system tools" + help + Say 'y' to build qemu-img, qemu-nbd and qemu-io tools. + +config BR2_PACKAGE_QEMU_SYSTEM_VNC + bool "Enable system VNC" + help + Say 'y' to build VNC display. + +endif # BR2_PACKAGE_QEMU Added: branches/1.0/package/qemu/qemu.mk =================================================================== --- branches/1.0/package/qemu/qemu.mk (rev 0) +++ branches/1.0/package/qemu/qemu.mk 2016-02-27 23:30:31 UTC (rev 7564) @@ -0,0 +1,116 @@ +################################################################################ +# +# qemu +# +################################################################################ + +QEMU_VERSION = 2.5.0 +QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2 +QEMU_SITE = http://wiki.qemu.org/download + +QEMU_DEPENDENCIES = host-pkg-config libglib2 zlib pixman util-linux + +# Need the LIBS variable because librt and libm are +# not automatically pulled. :-( +QEMU_LIBS = -lrt -lm + +QEMU_OPTS = + +QEMU_VARS = \ + LIBTOOL=$(HOST_DIR)/usr/bin/libtool + +# If we want to specify only a subset of targets, we must still enable all +# of them, so that QEMU properly builds its list of default targets, from +# which it then checks if the specified sub-set is valid. That's what we +# do in the first part of the if-clause. +# Otherwise, if we do not want to pass a sub-set of targets, we then need +# to either enable or disable -user and/or -system emulation appropriately. +# That's what we do in the else-clause. +ifneq ($(call qstrip,$(BR2_PACKAGE_QEMU_CUSTOM_TARGETS)),) +QEMU_OPTS += --enable-system --enable-linux-user +QEMU_OPTS += --target-list="$(call qstrip,$(BR2_PACKAGE_QEMU_CUSTOM_TARGETS))" +else + +ifeq ($(BR2_PACKAGE_QEMU_SYSTEM),y) +QEMU_OPTS += --enable-system +else +QEMU_OPTS += --disable-system +endif + +ifeq ($(BR2_PACKAGE_QEMU_LINUX_USER),y) +QEMU_OPTS += --enable-linux-user +else +QEMU_OPTS += --disable-linux-user +endif + +endif + +ifeq ($(BR2_PACKAGE_QEMU_SDL),y) +QEMU_OPTS += --enable-sdl +QEMU_DEPENDENCIES += sdl +QEMU_VARS += SDL_CONFIG=$(BR2_STAGING_DIR)/usr/bin/sdl-config +else +QEMU_OPTS += --disable-sdl +endif + +QEMU_OPTS += --disable-fdt + +ifeq ($(BR2_PACKAGE_QEMU_SYSTEM_TOOLS),y) +QEMU_OPTS += --enable-tools +else +QEMU_OPTS += --disable-tools +endif + +ifeq ($(BR2_PACKAGE_QEMU_SYSTEM_VNC),y) +QEMU_OPTS += --enable-vnc +else +QEMU_OPTS += --disable-vnc +endif + +define QEMU_CONFIGURE_CMDS + ( cd $(@D); \ + LIBS='$(QEMU_LIBS)' \ + $(TARGET_CONFIGURE_OPTS) \ + $(TARGET_CONFIGURE_ARGS) \ + $(QEMU_VARS) \ + ./configure \ + --prefix=/usr \ + --cross-prefix=$(TARGET_CROSS) \ + --with-system-pixman \ + --audio-drv-list= \ + --enable-kvm \ + --enable-attr \ + --enable-vhost-net \ + --enable-uuid \ + --disable-bsd-user \ + --disable-xen \ + --disable-slirp \ + --disable-virtfs \ + --disable-brlapi \ + --disable-curses \ + --disable-curl \ + --disable-bluez \ + --disable-vde \ + --disable-linux-aio \ + --disable-cap-ng \ + --disable-docs \ + --disable-spice \ + --disable-rbd \ + --disable-libiscsi \ + --disable-usb-redir \ + --disable-strip \ + --disable-seccomp \ + --disable-sparse \ + $(QEMU_OPTS) \ + ) +endef + +define QEMU_BUILD_CMDS + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) +endef + +define QEMU_INSTALL_TARGET_CMDS + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(QEMU_MAKE_ENV) DESTDIR=$(TARGET_DIR) install +endef + +$(eval $(call GENTARGETS,package,qemu)) Modified: branches/1.0/runnix-iso.config =================================================================== --- branches/1.0/runnix-iso.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/runnix-iso.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:27 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -578,6 +578,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set Modified: branches/1.0/runnix.config =================================================================== --- branches/1.0/runnix.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/runnix.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:26 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -579,6 +579,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set Modified: branches/1.0/x86_64-configs/astlinux-ast11.config =================================================================== --- branches/1.0/x86_64-configs/astlinux-ast11.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/x86_64-configs/astlinux-ast11.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:27 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -651,6 +651,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/x86_64-configs/astlinux-ast13.config =================================================================== --- branches/1.0/x86_64-configs/astlinux-ast13.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/x86_64-configs/astlinux-ast13.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:27 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:07:00 2016 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -651,6 +651,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/x86_64-configs/astlinux18.config =================================================================== --- branches/1.0/x86_64-configs/astlinux18.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/x86_64-configs/astlinux18.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:27 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:06:59 2016 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -651,6 +651,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/x86_64-configs/initrd.config =================================================================== --- branches/1.0/x86_64-configs/initrd.config 2016-02-27 14:55:12 UTC (rev 7563) +++ branches/1.0/x86_64-configs/initrd.config 2016-02-27 23:30:31 UTC (rev 7564) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7527-dirty Configuration -# Fri Feb 12 18:21:27 2016 +# Buildroot 2011.08-svn7563-dirty Configuration +# Sat Feb 27 17:07:00 2016 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -531,6 +531,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-27 14:55:14
|
Revision: 7563 http://sourceforge.net/p/astlinux/code/7563 Author: abelbeck Date: 2016-02-27 14:55:12 +0000 (Sat, 27 Feb 2016) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-02-27 14:50:57 UTC (rev 7562) +++ branches/1.0/docs/ChangeLog.txt 2016-02-27 14:55:12 UTC (rev 7563) @@ -10,7 +10,27 @@ Released @TBD@ +** System +-- nano, version bump to 2.5.3 + +** Networking + +-- miniupnpd, version bump to 1.9.20160222 + +** Asterisk + +-- Asterisk 1.8.32.3 (no change), 11.21.2 (no change) and 13.7.2 (no change) + +-- DAHDI, dahdi-linux 2.8.0.1 (no change) and dahdi-tools 2.8.0 (no change) + +-- pjsip 2.4.5 (no change) + +** Web Interface + +-- (no change) + + Additions for AstLinux 1.2.6: ============================= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-27 14:50:59
|
Revision: 7562 http://sourceforge.net/p/astlinux/code/7562 Author: abelbeck Date: 2016-02-27 14:50:57 +0000 (Sat, 27 Feb 2016) Log Message: ----------- miniupnpd, version bump to 1.9.20160222 Modified Paths: -------------- branches/1.0/package/miniupnpd/miniupnpd.mk Modified: branches/1.0/package/miniupnpd/miniupnpd.mk =================================================================== --- branches/1.0/package/miniupnpd/miniupnpd.mk 2016-02-27 14:47:16 UTC (rev 7561) +++ branches/1.0/package/miniupnpd/miniupnpd.mk 2016-02-27 14:50:57 UTC (rev 7562) @@ -4,7 +4,7 @@ # ############################################################# -MINIUPNPD_VERSION = 1.9.20160216 +MINIUPNPD_VERSION = 1.9.20160222 MINIUPNPD_SOURCE = miniupnpd-$(MINIUPNPD_VERSION).tar.gz MINIUPNPD_SITE = http://miniupnp.free.fr/files MINIUPNPD_DEPENDENCIES = host-pkg-config linux iptables openssl util-linux This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-27 14:47:18
|
Revision: 7561 http://sourceforge.net/p/astlinux/code/7561 Author: abelbeck Date: 2016-02-27 14:47:16 +0000 (Sat, 27 Feb 2016) Log Message: ----------- nano, version bump to 2.5.3 Modified Paths: -------------- branches/1.0/package/nano/nano.mk Modified: branches/1.0/package/nano/nano.mk =================================================================== --- branches/1.0/package/nano/nano.mk 2016-02-26 16:53:16 UTC (rev 7560) +++ branches/1.0/package/nano/nano.mk 2016-02-27 14:47:16 UTC (rev 7561) @@ -4,7 +4,7 @@ # ############################################################# -NANO_VERSION = 2.5.2 +NANO_VERSION = 2.5.3 NANO_SITE = http://www.nano-editor.org/dist/v2.5 NANO_MAKE_ENV = CURSES_LIB="-lncurses" NANO_CONF_ENV = ac_cv_prog_NCURSESW_CONFIG=false This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-26 16:53:18
|
Revision: 7560 http://sourceforge.net/p/astlinux/code/7560 Author: abelbeck Date: 2016-02-26 16:53:16 +0000 (Fri, 26 Feb 2016) Log Message: ----------- pjsip, use custom config for Asterisk Ref: https://wiki.asterisk.org/wiki/display/AST/Building+and+Installing+pjproject Modified Paths: -------------- branches/1.0/package/pjsip/pjsip.mk Added Paths: ----------- branches/1.0/package/pjsip/asterisk-config_site.h Added: branches/1.0/package/pjsip/asterisk-config_site.h =================================================================== --- branches/1.0/package/pjsip/asterisk-config_site.h (rev 0) +++ branches/1.0/package/pjsip/asterisk-config_site.h 2016-02-26 16:53:16 UTC (rev 7560) @@ -0,0 +1,43 @@ +/* Custom config for Asterisk + * + * https://wiki.asterisk.org/wiki/display/AST/Building+and+Installing+pjproject + * + */ + +#define NDEBUG 1 +#define PJ_HAS_IPV6 1 +#define PJ_MAX_HOSTNAME 256 +#define PJSIP_MAX_URL_SIZE 512 + +/* The upper limit on MAX_HANDLES is determined by + * the value of FD_SETSIZE on your system. For Linux + * this is usually 1024. The following code sets it + * to whatever FD_SETSIZE is or you can set it to a + * specific number yourself. pjproject will not + * compile if you set it to greater than FD_SETSIZE. + */ +#include <sys/select.h> +#define PJ_IOQUEUE_MAX_HANDLES (FD_SETSIZE) + +/* Set for maximum server performance. + * In tests, setting these parameters reduced + * CPU load by approximately 25% for the same number + * of calls per second. Your results will vary, + * of course. + */ +#define PJ_SCANNER_USE_BITWISE 0 +#define PJ_OS_HAS_CHECK_STACK 0 +#define PJ_LOG_MAX_LEVEL 3 +#define PJ_ENABLE_EXTRA_CHECK 0 +#define PJSIP_MAX_TSX_COUNT ((64*1024)-1) +#define PJSIP_MAX_DIALOG_COUNT ((64*1024)-1) +#define PJSIP_UDP_SO_SNDBUF_SIZE (512*1024) +#define PJSIP_UDP_SO_RCVBUF_SIZE (512*1024) +#define PJ_DEBUG 0 +#define PJSIP_SAFE_MODULE 0 +#define PJ_HAS_STRICMP_ALNUM 0 +#define PJ_HASH_USE_OWN_TOLOWER 1 +#define PJSIP_UNESCAPE_IN_PLACE 1 +#undef PJ_TODO +#define PJ_TODO(x) + Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2016-02-26 14:41:37 UTC (rev 7559) +++ branches/1.0/package/pjsip/pjsip.mk 2016-02-26 16:53:16 UTC (rev 7560) @@ -11,8 +11,13 @@ PJSIP_DEPENDENCIES = libsrtp +define PJSIP_CUSTOM_CONFIG + cp package/pjsip/asterisk-config_site.h $(@D)/pjlib/include/pj/config_site.h +endef +PJSIP_POST_PATCH_HOOKS += PJSIP_CUSTOM_CONFIG + PJSIP_CONF_ENV = \ - CFLAGS="$(TARGET_CFLAGS) -O2 -DPJ_HAS_IPV6=1 -DNDEBUG" \ + CFLAGS="$(TARGET_CFLAGS) -O2" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ LD="$(TARGET_CC)" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-26 14:41:40
|
Revision: 7559 http://sourceforge.net/p/astlinux/code/7559 Author: abelbeck Date: 2016-02-26 14:41:37 +0000 (Fri, 26 Feb 2016) Log Message: ----------- return to release 'svn' Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-02-26 14:41:31 UTC (rev 7558) +++ branches/1.0/docs/ChangeLog.txt 2016-02-26 14:41:37 UTC (rev 7559) @@ -5,6 +5,12 @@ === docs/ChangeLog.txt ========================================================= +Additions for AstLinux 1.2.7: +============================= + +Released @TBD@ + + Additions for AstLinux 1.2.6: ============================= Modified: branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release =================================================================== --- branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2016-02-26 14:41:31 UTC (rev 7558) +++ branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2016-02-26 14:41:37 UTC (rev 7559) @@ -1 +1 @@ -astlinux-1.2.6 +svn This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-26 14:41:34
|
Revision: 7558 http://sourceforge.net/p/astlinux/code/7558 Author: abelbeck Date: 2016-02-26 14:41:31 +0000 (Fri, 26 Feb 2016) Log Message: ----------- create 1.2.6 tag Added Paths: ----------- tags/1.2.6/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-26 14:41:25
|
Revision: 7557 http://sourceforge.net/p/astlinux/code/7557 Author: abelbeck Date: 2016-02-26 14:41:23 +0000 (Fri, 26 Feb 2016) Log Message: ----------- mark release 'astlinux-1.2.6' Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-02-25 18:44:34 UTC (rev 7556) +++ branches/1.0/docs/ChangeLog.txt 2016-02-26 14:41:23 UTC (rev 7557) @@ -8,7 +8,7 @@ Additions for AstLinux 1.2.6: ============================= -Released @TBD@ +Released 2016-02-26 ** System Modified: branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release =================================================================== --- branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2016-02-25 18:44:34 UTC (rev 7556) +++ branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2016-02-26 14:41:23 UTC (rev 7557) @@ -1 +1 @@ -svn +astlinux-1.2.6 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-25 18:44:36
|
Revision: 7556 http://sourceforge.net/p/astlinux/code/7556 Author: abelbeck Date: 2016-02-25 18:44:34 +0000 (Thu, 25 Feb 2016) Log Message: ----------- master-tag script, automatically add the release date Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt branches/1.0/scripts/master-tag Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-02-24 01:23:01 UTC (rev 7555) +++ branches/1.0/docs/ChangeLog.txt 2016-02-25 18:44:34 UTC (rev 7556) @@ -8,7 +8,7 @@ Additions for AstLinux 1.2.6: ============================= -Released **TBD** +Released @TBD@ ** System @@ -73,7 +73,7 @@ Additions for AstLinux 1.2.5: ============================= -Released 2015-02-10 +Released 2016-02-10 ** Build System Modified: branches/1.0/scripts/master-tag =================================================================== --- branches/1.0/scripts/master-tag 2016-02-24 01:23:01 UTC (rev 7555) +++ branches/1.0/scripts/master-tag 2016-02-25 18:44:34 UTC (rev 7556) @@ -13,14 +13,32 @@ ASTLINUX_RELEASE="project/astlinux/target_skeleton/etc/astlinux-release" +ASTLINUX_CHANGELOG="docs/ChangeLog.txt" + mark_release() { echo "$RELEASE" > "$ASTLINUX_RELEASE" + + sed -i "s/^Released @TBD@/Released $(date +%Y-%m-%d)/" "$ASTLINUX_CHANGELOG" } mark_svn() { + local error="$1" + echo "svn" > "$ASTLINUX_RELEASE" + + if [ "$error" = "error" ]; then + sed -i "s/^Released $(date +%Y-%m-%d)/Released @TBD@/" "$ASTLINUX_CHANGELOG" + else + sed -i '8 i\ +Additions for AstLinux '$TVER'.'$(($(echo "$RELEASE" | cut -d'.' -f3)+1))':\ +=============================\ +\ +Released @TBD@\ +\ +' "$ASTLINUX_CHANGELOG" + fi } REPO_ROOT="$(LANG=C svn info | awk -F': ' '/^Repository Root:/ { print $2 }')" @@ -45,7 +63,7 @@ svn ci -m "mark release '$RELEASE'" if [ $? -ne 0 ]; then - mark_svn + mark_svn error exit 1 fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-24 01:23:03
|
Revision: 7555 http://sourceforge.net/p/astlinux/code/7555 Author: abelbeck Date: 2016-02-24 01:23:01 +0000 (Wed, 24 Feb 2016) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-02-22 16:54:56 UTC (rev 7554) +++ branches/1.0/docs/ChangeLog.txt 2016-02-24 01:23:01 UTC (rev 7555) @@ -33,8 +33,8 @@ ** Networking -- OpenSSH, new SSH Server rc.conf variables: - == SSHD_PASS_AUTH (yes|no, defaults to "yes") - == SSHD_ALLOW_USERS (space separated list of users, defaults to any user) + == SSHD_PASS_AUTH (PasswordAuthentication), yes|no, defaults to "yes" + == SSHD_ALLOW_USERS (AllowUsers), space separated list of users, defaults to any user -- libcurl (curl) version bump to 7.47.1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-22 16:54:58
|
Revision: 7554 http://sourceforge.net/p/astlinux/code/7554 Author: abelbeck Date: 2016-02-22 16:54:56 +0000 (Mon, 22 Feb 2016) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-02-22 16:46:25 UTC (rev 7553) +++ branches/1.0/docs/ChangeLog.txt 2016-02-22 16:54:56 UTC (rev 7554) @@ -32,6 +32,10 @@ ** Networking +-- OpenSSH, new SSH Server rc.conf variables: + == SSHD_PASS_AUTH (yes|no, defaults to "yes") + == SSHD_ALLOW_USERS (space separated list of users, defaults to any user) + -- libcurl (curl) version bump to 7.47.1 -- openldap, version bump to 2.4.44 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-22 16:46:27
|
Revision: 7553 http://sourceforge.net/p/astlinux/code/7553 Author: abelbeck Date: 2016-02-22 16:46:25 +0000 (Mon, 22 Feb 2016) Log Message: ----------- openssh, add sshd rc.conf variables: SSHD_PASS_AUTH, SSHD_ALLOW_USERS Modified Paths: -------------- branches/1.0/package/openssh/sshd.init branches/1.0/project/astlinux/target_skeleton/stat/etc/rc.conf Modified: branches/1.0/package/openssh/sshd.init =================================================================== --- branches/1.0/package/openssh/sshd.init 2016-02-20 23:08:28 UTC (rev 7552) +++ branches/1.0/package/openssh/sshd.init 2016-02-22 16:46:25 UTC (rev 7553) @@ -12,7 +12,6 @@ fi PORT="${SSHDPORT:-22}" - RSTAT="${SSHDROOT:-yes}" if [ -f /mnt/kd/sshd.conf ]; then cp /mnt/kd/sshd.conf /tmp/etc/ssh/sshd_config @@ -30,7 +29,8 @@ echo "ListenAddress 0.0.0.0" >> /tmp/etc/ssh/sshd_config echo " -PermitRootLogin $RSTAT +PermitRootLogin ${SSHDROOT:-yes} +PasswordAuthentication ${SSHD_PASS_AUTH:-yes} IPQoS cs2 af41 @@ -39,6 +39,9 @@ if [ -f /etc/issue.net ]; then echo "Banner /etc/issue.net" >> /tmp/etc/ssh/sshd_config fi + if [ -n "$SSHD_ALLOW_USERS" ]; then + echo "AllowUsers $SSHD_ALLOW_USERS" >> /tmp/etc/ssh/sshd_config + fi fi # if it's not a link (to /mnt/kd) then populate it from /stat/etc/ssh Modified: branches/1.0/project/astlinux/target_skeleton/stat/etc/rc.conf =================================================================== --- branches/1.0/project/astlinux/target_skeleton/stat/etc/rc.conf 2016-02-20 23:08:28 UTC (rev 7552) +++ branches/1.0/project/astlinux/target_skeleton/stat/etc/rc.conf 2016-02-22 16:46:25 UTC (rev 7553) @@ -464,11 +464,11 @@ ## SMTP port to connect to SMTP_SERVER on. Defaults to 25 #SMTP_PORT="25" -## SSHd Server -#SSHDPORT=22 -## -## Allow sshd root logins? Yes or no are acceptable. -#SSHDROOT="yes" +## SSH Server +#SSHDPORT="22" # TCP Port for local SSH server, defaults to 22 +#SSHDROOT="yes" # PermitRootLogin, yes|no, defaults to "yes" +#SSHD_PASS_AUTH="yes" # PasswordAuthentication, yes|no, defaults to "yes" +#SSHD_ALLOW_USERS="root" # AllowUsers, space separated list of users, defaults to any user ## Stunnel support. ## Listen on a TCP port using SSL, then relay that connection to a non-SSL TCP service. (STUNNEL_SERVERS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-20 23:08:30
|
Revision: 7552 http://sourceforge.net/p/astlinux/code/7552 Author: abelbeck Date: 2016-02-20 23:08:28 +0000 (Sat, 20 Feb 2016) Log Message: ----------- web interface, Status tab -> License, add 'htop' and update copyright dates Modified Paths: -------------- branches/1.0/package/webinterface/altweb/common/license-packages.txt Modified: branches/1.0/package/webinterface/altweb/common/license-packages.txt =================================================================== --- branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-02-20 22:50:47 UTC (rev 7551) +++ branches/1.0/package/webinterface/altweb/common/license-packages.txt 2016-02-20 23:08:28 UTC (rev 7552) @@ -7,19 +7,19 @@ ## ex-vi~Copyright (c) 2001-2002 Caldera International Inc. All rights reserved. RUNNIX~Copyright (c) 2006-2015 by Kristian Kielhofner. -libSRTP~Copyright (c) 2001-2015 Cisco Systems, Inc. All rights reserved. +libSRTP~Copyright (c) 2001-2016 Cisco Systems, Inc. All rights reserved. iLBC CODEC~Copyright (c) 2011 The WebRTC project authors. All rights reserved. Web Interface~Copyright (c) 2008-2016 Lonnie Abelbeck. shellinabox~Copyright (c) 2008-2015 Markus Gutschke, Luka Krajger. -Asterisk~Copyright (c) 1999-2015 Digium, Inc. +Asterisk~Copyright (c) 1999-2016 Digium, Inc. DAHDI~Copyright (c) 2001-2015 Digium, Inc. libPRI~Copyright (c) 2001-2015 Digium, Inc. -Arno's Firewall~Copyright (c) 2001-2015 by Arno van Amersfoort. +Arno's Firewall~Copyright (c) 2001-2016 by Arno van Amersfoort. dnsmasq~Copyright (c) 2000-2015 Simon Kelley. OpenSSL~Copyright (c) 1998-2015 The OpenSSL Project. All rights reserved. OpenSSH~Copyright (c) 1995-2015 Tatu Ylonen <yl...@cs...>, Espoo, Finland. All rights reserved. OpenVPN~Copyright (c) 2002-2015 OpenVPN Technologies, Inc. <sa...@op...> -PHP~Copyright (c) 1999-2015 The PHP Group. All rights reserved. +PHP~Copyright (c) 1999-2016 The PHP Group. All rights reserved. ntpd~Copyright (c) 1992-2015 David L. Mills. vsftpd~Copyright (c) 2001-2013 Daniel Jacobowitz. <da...@de...> lighttpd~Copyright (c) 2004-2016, Jan Kneschke. @@ -28,14 +28,14 @@ libtiff~Copyright (c) 1988-1997 Sam Leffler, Copyright (c) 1991-1997 Silicon Graphics, Inc. libjpeg~Copyright (c) 1991-2014, Thomas G. Lane, Guido Vollbeding. iptables~Copyright (c) 2000-2013 by the netfilter coreteam <cor...@ne...> -curl~Copyright (c) 1996-2015 Daniel Stenberg, <da...@ha...>. +curl~Copyright (c) 1996-2016 Daniel Stenberg, <da...@ha...>. mDNS~Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved. rp-pppoe~Copyright (c) 2001-2012 Roaring Penguin Software Inc. zabbix~Copyright (c) 2000-2015 SIA Zabbix. zlib~Copyright (c) 1995-2013 Jean-loup Gailly. SILK CODEC~Copyright (c) 2010-2012 Skype and/or Microsoft. All rights reserved. Licensed via Digium, Inc. SpanDSP~Copyright (c) 2003-2015 Steve Underwood <st...@co...>. All rights reserved. -Prosody~Copyright (c) 2008-2015 Matthew Wild and Waqas Hussain. +Prosody~Copyright (c) 2008-2016 Matthew Wild and Waqas Hussain. clix~Copyright (c) 2008-2013 Matthew Wild. Lua~Copyright (c) 1994-2012 Lua.org, PUC-Rio. All rights reserved. perl~Copyright (c) 1987-2013 by Larry Wall, et al. @@ -43,17 +43,18 @@ FOP2~Copyright (c) 2009-2015 House Internet S.R.L. (http://www.fop2.com) ddclient~Copyright (c) 1999-2013 Paul Burry, wimpunk, et al. vCard converter~Copyright (c) 2006-2013 Thomas Bruederli <th...@br...> -OpenLDAP~Copyright (c) 1998-2015 The OpenLDAP Foundation. All rights reserved. +OpenLDAP~Copyright (c) 1998-2016 The OpenLDAP Foundation. All rights reserved. darkstat~Copyright (c) 2001-2015 Emil Mikulic, et al. NUT~Copyright (c) 1999-2013 Russell Kroll, Arnaud Quette, et al. iftop~Copyright (c) 2002-2014 Paul Warren, Chris Lightfoot, et al. -dnscrypt-proxy~Copyright (c) 2011-2015 Frank Denis -libsodium~Copyright (c) 2013-2015 Frank Denis +dnscrypt-proxy~Copyright (c) 2011-2016 Frank Denis +libsodium~Copyright (c) 2013-2016 Frank Denis phoneprov-tools~Copyright (c) 2015 Lonnie Abelbeck and Michael Keuter. smartmontools~Copyright (c) 2002-2015, Bruce Allen, Christian Franke, et al. -Monit~Copyright (c) 2001-2015, Tildeslash. All rights reserved -sqlite~Copyright (c) 1995-2015, SQLite Consortium -sqliteodbc~Copyright (c) 2001-2015, Christian Werner +Monit~Copyright (c) 2001-2016, Tildeslash. All rights reserved +sqlite~Copyright (c) 1995-2016, SQLite Consortium +sqliteodbc~Copyright (c) 2001-2016, Christian Werner Fossil~Copyright (c) 2007-2015 D. Richard Hipp. All rights reserved. BusyBox~Copyright (c) 1998-2011 Erik Andersen, Rob Landley, Denys Vlasenko, et al. dhcp6c~Copyright (c) 1998-2008 WIDE Project. +htop~Copyright (c) 2004-2012 Hisham Muhammad. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-20 22:50:49
|
Revision: 7551 http://sourceforge.net/p/astlinux/code/7551 Author: abelbeck Date: 2016-02-20 22:50:47 +0000 (Sat, 20 Feb 2016) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2016-02-20 22:47:18 UTC (rev 7550) +++ branches/1.0/docs/ChangeLog.txt 2016-02-20 22:50:47 UTC (rev 7551) @@ -14,6 +14,8 @@ -- eglibc 2.18 (patched), security fixes: CVE-2015-7547, CVE-2015-1472, CVE-2014-9402, CVE-2015-1781, CVE-2014-8121 +-- RUNNIX, version bump to runnix-0.4-7549, enable 'vmxnet3' NIC driver, dropbear version bump to 2015.71, eglibc security patches + -- php, version bump to 5.5.32, bug and security fixes -- htop, new command is an interactive process viewer, aka a better 'top' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-20 22:47:20
|
Revision: 7550 http://sourceforge.net/p/astlinux/code/7550 Author: abelbeck Date: 2016-02-20 22:47:18 +0000 (Sat, 20 Feb 2016) Log Message: ----------- runnix, version bump to runnix-0.4-7549, enable 'vmxnet3' NIC driver, dropbear version bump to 2015.71, eglibc security fixes including CVE-2015-7547 Modified Paths: -------------- branches/1.0/boot/runnix/runnix.mk Modified: branches/1.0/boot/runnix/runnix.mk =================================================================== --- branches/1.0/boot/runnix/runnix.mk 2016-02-20 18:57:46 UTC (rev 7549) +++ branches/1.0/boot/runnix/runnix.mk 2016-02-20 22:47:18 UTC (rev 7550) @@ -3,7 +3,7 @@ # runnix # ############################################################# -RUNNIX_VER:=0.4-7419 +RUNNIX_VER:=0.4-7549 RUNNIX_SOURCE:=runnix-$(RUNNIX_VER).tar.gz RUNNIX_SITE:=http://mirror.astlinux.org/runnix4 RUNNIX_DIR:=$(BUILD_DIR)/runnix-$(RUNNIX_VER) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-20 18:57:48
|
Revision: 7549 http://sourceforge.net/p/astlinux/code/7549 Author: abelbeck Date: 2016-02-20 18:57:46 +0000 (Sat, 20 Feb 2016) Log Message: ----------- runnix and runnix-iso kernel tweaks, enable 'vmxnet3' NIC driver and disable unneeded 'ipip' support Modified Paths: -------------- branches/1.0/project/runnix/geni586/linux.config branches/1.0/project/runnix-iso/geni586/linux.config Modified: branches/1.0/project/runnix/geni586/linux.config =================================================================== --- branches/1.0/project/runnix/geni586/linux.config 2016-02-20 17:41:00 UTC (rev 7548) +++ branches/1.0/project/runnix/geni586/linux.config 2016-02-20 18:57:46 UTC (rev 7549) @@ -484,7 +484,7 @@ # CONFIG_IP_MULTICAST is not set # CONFIG_IP_ADVANCED_ROUTER is not set # CONFIG_IP_PNP is not set -CONFIG_NET_IPIP=y +# CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE_DEMUX is not set # CONFIG_ARPD is not set CONFIG_SYN_COOKIES=y @@ -492,7 +492,7 @@ # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set # CONFIG_INET_XFRM_TUNNEL is not set -CONFIG_INET_TUNNEL=y +# CONFIG_INET_TUNNEL is not set # CONFIG_INET_XFRM_MODE_TRANSPORT is not set # CONFIG_INET_XFRM_MODE_TUNNEL is not set # CONFIG_INET_XFRM_MODE_BEET is not set @@ -1027,7 +1027,7 @@ # Enable WiMAX (Networking options) to see the WiMAX drivers # # CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set +CONFIG_VMXNET3=y # CONFIG_ISDN is not set # CONFIG_PHONE is not set Modified: branches/1.0/project/runnix-iso/geni586/linux.config =================================================================== --- branches/1.0/project/runnix-iso/geni586/linux.config 2016-02-20 17:41:00 UTC (rev 7548) +++ branches/1.0/project/runnix-iso/geni586/linux.config 2016-02-20 18:57:46 UTC (rev 7549) @@ -484,7 +484,7 @@ # CONFIG_IP_MULTICAST is not set # CONFIG_IP_ADVANCED_ROUTER is not set # CONFIG_IP_PNP is not set -CONFIG_NET_IPIP=y +# CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE_DEMUX is not set # CONFIG_ARPD is not set CONFIG_SYN_COOKIES=y @@ -492,7 +492,7 @@ # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set # CONFIG_INET_XFRM_TUNNEL is not set -CONFIG_INET_TUNNEL=y +# CONFIG_INET_TUNNEL is not set # CONFIG_INET_XFRM_MODE_TRANSPORT is not set # CONFIG_INET_XFRM_MODE_TUNNEL is not set # CONFIG_INET_XFRM_MODE_BEET is not set @@ -1028,7 +1028,7 @@ # Enable WiMAX (Networking options) to see the WiMAX drivers # # CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set +CONFIG_VMXNET3=y # CONFIG_ISDN is not set # CONFIG_PHONE is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-20 17:41:02
|
Revision: 7548 http://sourceforge.net/p/astlinux/code/7548 Author: abelbeck Date: 2016-02-20 17:41:00 +0000 (Sat, 20 Feb 2016) Log Message: ----------- runnix and runnix-iso, our target skeleton copying does not include dot-files, this was 'fixed' in upstream Buildroot (several times) by using rsync, so keep it simple and add the dot-files in the 'post-build' scripts. All this to remove warning with dropbear at runtime Modified Paths: -------------- branches/1.0/project/runnix/target_skeleton/runnix branches/1.0/project/runnix-iso/target_skeleton/runnix branches/1.0/scripts/runnix-iso-post-build branches/1.0/scripts/runnix-post-build Removed Paths: ------------- branches/1.0/project/runnix/target_skeleton/.ssh branches/1.0/project/runnix-iso/target_skeleton/.ssh Deleted: branches/1.0/project/runnix/target_skeleton/.ssh =================================================================== --- branches/1.0/project/runnix/target_skeleton/.ssh 2016-02-20 15:54:46 UTC (rev 7547) +++ branches/1.0/project/runnix/target_skeleton/.ssh 2016-02-20 17:41:00 UTC (rev 7548) @@ -1 +0,0 @@ -link /tmp/.ssh \ No newline at end of file Modified: branches/1.0/project/runnix/target_skeleton/runnix =================================================================== --- branches/1.0/project/runnix/target_skeleton/runnix 2016-02-20 15:54:46 UTC (rev 7547) +++ branches/1.0/project/runnix/target_skeleton/runnix 2016-02-20 17:41:00 UTC (rev 7548) @@ -63,6 +63,7 @@ mount -t devpts devpts /dev/pts mkdir /tmp/etc/dropbear + mkdir /tmp/.ssh echo "Generating keys..." dropbearkey -t rsa -f /tmp/etc/dropbear/dropbear_rsa_host_key -s 1024 Deleted: branches/1.0/project/runnix-iso/target_skeleton/.ssh =================================================================== --- branches/1.0/project/runnix-iso/target_skeleton/.ssh 2016-02-20 15:54:46 UTC (rev 7547) +++ branches/1.0/project/runnix-iso/target_skeleton/.ssh 2016-02-20 17:41:00 UTC (rev 7548) @@ -1 +0,0 @@ -link /tmp/.ssh \ No newline at end of file Modified: branches/1.0/project/runnix-iso/target_skeleton/runnix =================================================================== --- branches/1.0/project/runnix-iso/target_skeleton/runnix 2016-02-20 15:54:46 UTC (rev 7547) +++ branches/1.0/project/runnix-iso/target_skeleton/runnix 2016-02-20 17:41:00 UTC (rev 7548) @@ -62,6 +62,7 @@ mount -t devpts devpts /dev/pts mkdir /tmp/etc/dropbear + mkdir /tmp/.ssh echo "Generating keys..." dropbearkey -t rsa -f /tmp/etc/dropbear/dropbear_rsa_host_key -s 1024 Modified: branches/1.0/scripts/runnix-iso-post-build =================================================================== --- branches/1.0/scripts/runnix-iso-post-build 2016-02-20 15:54:46 UTC (rev 7547) +++ branches/1.0/scripts/runnix-iso-post-build 2016-02-20 17:41:00 UTC (rev 7548) @@ -20,6 +20,10 @@ fi } +## Our target skeleton copying does not include dot-files +## Do it here: +ln -snf "/tmp/.ssh" "$target/.ssh" + make_release_version echo ${RUNVER} > "$target/etc/runnix-release" Modified: branches/1.0/scripts/runnix-post-build =================================================================== --- branches/1.0/scripts/runnix-post-build 2016-02-20 15:54:46 UTC (rev 7547) +++ branches/1.0/scripts/runnix-post-build 2016-02-20 17:41:00 UTC (rev 7548) @@ -20,6 +20,10 @@ fi } +## Our target skeleton copying does not include dot-files +## Do it here: +ln -snf "/tmp/.ssh" "$target/.ssh" + make_release_version echo ${RUNVER} > "$target/etc/runnix-release" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-20 15:54:49
|
Revision: 7547 http://sourceforge.net/p/astlinux/code/7547 Author: abelbeck Date: 2016-02-20 15:54:46 +0000 (Sat, 20 Feb 2016) Log Message: ----------- runnix and runnix-iso, add /.ssh symlink to /tmp/.ssh Added Paths: ----------- branches/1.0/project/runnix/target_skeleton/.ssh branches/1.0/project/runnix-iso/target_skeleton/.ssh Added: branches/1.0/project/runnix/target_skeleton/.ssh =================================================================== --- branches/1.0/project/runnix/target_skeleton/.ssh (rev 0) +++ branches/1.0/project/runnix/target_skeleton/.ssh 2016-02-20 15:54:46 UTC (rev 7547) @@ -0,0 +1 @@ +link /tmp/.ssh \ No newline at end of file Property changes on: branches/1.0/project/runnix/target_skeleton/.ssh ___________________________________________________________________ Added: svn:special ## -0,0 +1 ## +* \ No newline at end of property Added: branches/1.0/project/runnix-iso/target_skeleton/.ssh =================================================================== --- branches/1.0/project/runnix-iso/target_skeleton/.ssh (rev 0) +++ branches/1.0/project/runnix-iso/target_skeleton/.ssh 2016-02-20 15:54:46 UTC (rev 7547) @@ -0,0 +1 @@ +link /tmp/.ssh \ No newline at end of file Property changes on: branches/1.0/project/runnix-iso/target_skeleton/.ssh ___________________________________________________________________ Added: svn:special ## -0,0 +1 ## +* \ No newline at end of property This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-20 14:38:11
|
Revision: 7546 http://sourceforge.net/p/astlinux/code/7546 Author: abelbeck Date: 2016-02-20 14:38:08 +0000 (Sat, 20 Feb 2016) Log Message: ----------- dropbear, version bump to 2015.71, for runnix and runnix-iso Modified Paths: -------------- branches/1.0/package/dropbear/dropbear.mk Modified: branches/1.0/package/dropbear/dropbear.mk =================================================================== --- branches/1.0/package/dropbear/dropbear.mk 2016-02-19 17:02:45 UTC (rev 7545) +++ branches/1.0/package/dropbear/dropbear.mk 2016-02-20 14:38:08 UTC (rev 7546) @@ -4,7 +4,7 @@ # ############################################################# -DROPBEAR_VERSION = 2015.67 +DROPBEAR_VERSION = 2015.71 DROPBEAR_SITE = http://matt.ucc.asn.au/dropbear/releases DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2 DROPBEAR_TARGET_BINS = dbclient dropbearkey dropbearconvert scp ssh This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |