Re: [OpenWrt-Devel] 15.05.1 - Chaos Calmer - Illegal Instruction while running swish-e on RasspberryPi BCM2708 B/B+/C

2016-03-26 Thread smilebef
ich weiß nicht, ob das am einer fehlerhaften Makefile liegt oder am
Compiler.
Bei aa und bb ging es noch.
Bin noch auf der Suche nach der Ursache.
Habe noch keine Idee wie ich das debuggen soll.

lg


Am Wed, 16 Mar 2016 13:06:53 +0100
schrieb John Crispin :

> The OpenWrt developers are proud to announce the minor fix release of
> OpenWrt Chaos Calmer.
> 
>___ __
>  |   |.-.-.-.|  |  |  |..|  |_
>  |   -   ||  _  |  -__| ||  |  |  ||   _||   _|
>  |___||   __|_|__|__||||__|  ||
>   |__| W I R E L E S S   F R E E D O M
>  -
>  CHAOS CALMER (15.05.1)
>  -
>   * 1 1/2 oz GinShake with a glassful
>   * 1/4 oz Triple Sec   of broken ice and pour
>   * 3/4 oz Lime Juice   unstrained into a goblet.
>   * 1 1/2 oz Orange Juice
>   * 1 tsp. Grenadine Syrup
>  -
> 
>  -
> http://downloads.openwrt.org/chaos_calmer/15.05.1/
> 
> 
> ** Highlights since Chaos Calmer 15.05 **
> 
> * Linux kernel updated to version 3.18.23
> * Security fixes:
> - kernel: fix keyring reference leak (CVE-2016-0728)
> - openssl updated to 1.0.2f
> - hostapd security fixes
> - samba36 (CVE patches from 2015-12-16)
> * Update of netifd, procd, uci, rpcd, ubox & uhttpd
> * Driver updates
> - ledtrig-netdev: fix possible deadlock
> - bcm47xxpart: fix bcm53xx booting on NAND with badblocks
> - brcmfmac: fix getting/setting TX power, add stations dumping and
> support beamforming
> - 8139c: backport v4.3 fixes
> - backport spi layer fixes from v4.2+
> - solos-pci: increase headroom on RX
> - xrx200-net: fix port mirroring issues
> - update mac80211 (adding mt76)
> * Support for new devices:
> - Linksys WRT1900ACS (mvebu)
> - D-LINK DIR-615 rev. Ix (ar71xx)
> - LinkIt Smart7688 (ramips)
> - Gainstrong MiniBox v1.0 (ar71xx)
> - ZBT WG2626 (ramips)
> - TP-LINK TL-WR841N/ND v10 (ar71xx)
> - TL-WR741ND v5 (ar71xx)
> - WR740N v5.0 (ar71xx)
> - TP-LINK TL-WR941ND v6 international version (ar71xx)
> * Improved support for existing devices:
> - Netgear R8000: USB power and CPU speed
> - RapsberryPi: Add sysupgrade support
> * Kernel fixes
> - ramoverlay
> - multicast-to-unicast
> - ip6_fragment related skb_leak
> * Package fixes
> - igmpproxy: spurious restart issues
> 
> Have fun!
> The OpenWrt developer team
> ___
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] 15.05.1 - Chaos Calmer DGND3700v1 fails to boot, 15.05 & trunk work fine.

2016-03-26 Thread Phil Armstrong



On 17/03/16 14:00, Phil Armstrong wrote:
15.05.1 certainly seems to have bricked my DGND3700v1. A TTL 
serial<->USB adaptor is in the post to see if I can resurrect it. 
cheers, Phil


OK. After some prodding with an ADAfruit FTDI adaptor (works fine on an 
rPI, but I get no RX from the board on the DGND3700v1. Hammering on 
various keys seems to put it in rescue mode though, so TX must be sort 
of working & I can flash a new image via tftp!) I have resurrected this 
router.


Having flashed a few images, I can confirm that 15.05.1 fails to boot, 
but both OpenWRT trunk as of today boots fine & the original Chaos 
Calmer 15.05 image boot fine.


Should I try a build from the head of the 15.05 branch? I haven’t 
wrestled with the OpenWRT build system as of yet but I’m willing to give 
it a go.


Unfortunately I don’t have any logs at all from the failed boot as (see 
above) I can’t get any output from the bootloader over the serial cable. 
Any hints on this appreciated.


cheers, Phil
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] Sha256 checksum generation of images: why OpenSSL instead of sha256sum?

2016-03-26 Thread Paul Fertser
Weedy  writes:
> $ openssl dgst -sha256 ubcd535.iso | awk '/^SHA256/ {
> gsub(/^SHA256\(/,"",$1); gsub(/\)\=/,"",$1); print $2"  "$1 }'

Or sed -E 's/.*\((.*)\)= (.*)/\2  \1/'

-- 
Be free, use free (http://www.gnu.org/philosophy/free-sw.html) software!
mailto:fercer...@gmail.com
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] Sha256 checksum generation of images: why OpenSSL instead of sha256sum?

2016-03-26 Thread Weedy
$ openssl dgst -sha256 ubcd535.iso | awk '/^SHA256/ {
gsub(/^SHA256\(/,"",$1); gsub(/\)\=/,"",$1); print $2"  "$1 }'
f4ad684385845a0dfcd944dc6b6a0aa00886a05a7143efafa8403e01fea49849  ubcd535.iso
$ sha256sum ubcd535.iso
f4ad684385845a0dfcd944dc6b6a0aa00886a05a7143efafa8403e01fea49849  ubcd535.iso

It's fairly painless to reformat.
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel