Changeset 885
- Timestamp:
- Dec 29, 2016, 10:08:00 AM (6 years ago)
- Location:
- trunk/debian/packages
- Files:
-
- 5 added
- 1 deleted
- 6 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/debian/packages/README
r848 r885 18 18 - lintian -v --show-overrides 19 19 - dput -u <builder-name> <package>.changes 20 21 To cross-compile with sbuild: 22 - cd trunk/ 23 - sbuild --dist stretch-debwrt-unstable \ 24 --arch mipsel \ 25 --chroot mini-buildd-stretch-mipsel \ 26 --chroot-setup-command "apt-get update" \ 27 --chroot-setup-command "apt-get --yes --option=APT::Install-Recommends=false install gnupg1" \ 28 --build-dep-resolver aptitude \ 29 --run-lintian \ 30 --lintian-opts --suppress-tags=bad-distribution-in-changes-file \ 31 --lintian-opts --info -
trunk/debian/packages/debwrt-net/trunk/debian/changelog
r787 r885 1 debwrt-net (0.7~debwrtSTRETCH+7) stretch-debwrt-unstable; urgency=medium 2 3 * Fix typo in sslh.cfg 4 * Fix wrongly named DebWrt dnsmasq configuration file 5 6 -- Johan van Zoomeren <amain@debwrt.net> Sat, 24 Dec 2016 14:36:55 +0100 7 8 debwrt-net (0.7~debwrtSTRETCH+6) stretch-debwrt-unstable; urgency=medium 9 10 * Load wl module only for brcm47xx 11 12 -- Johan van Zoomeren <amain@debwrt.net> Sat, 24 Dec 2016 13:02:36 +0100 13 14 debwrt-net (0.7~debwrtSTRETCH+5) stretch-debwrt-unstable; urgency=medium 15 16 * Add sslh support 17 18 -- Johan van Zoomeren <amain@debwrt.net> Fri, 23 Dec 2016 20:57:24 +0100 19 1 20 debwrt-net (0.7~debwrtSTRETCH+4) stretch-debwrt-unstable; urgency=medium 2 21 -
trunk/debian/packages/debwrt-net/trunk/debian/postinst
r776 r885 5 5 # DebWrt - Debian on Embedded devices 6 6 # 7 # Copyright (C) 2011,201 5Johan van Zoomeren <amain@debwrt.net>7 # Copyright (C) 2011,2016 Johan van Zoomeren <amain@debwrt.net> 8 8 # 9 9 # This program is free software: you can redistribute it and/or modify … … 27 27 case ${ACTION} in 28 28 configure) 29 cat >>/etc/modules <<EOF 29 if [ "brcm47xx" = "$(cat /lib/modules/debwrt.target &>/dev/null)" ] 30 then 31 if ! grep -q "^[ #]*wl$" /etc/modules 32 then 33 cat >>/etc/modules <<EOF 30 34 # DebWrt - default is to use the proprietary wl driver for devices with broadcom 31 35 # wireless chips. There are still performance problems with the open … … 33 37 # commented to use b43. 34 38 # ( note: also unblacklist b43 in /etc/modprobe.d/b43.conf ) 35 #wl39 wl 36 40 EOF 41 fi 42 fi 43 44 if [ ! -e /etc/default/sslh.debwrt ] 45 then 46 cp /usr/share/doc/debwrt-net/default/sslh /etc/default/sslh.debwrt 47 mv /etc/default/sslh /etc/default/sslh.org 48 ln -s /etc/default/sslh.debwrt /etc/default/sslh 49 50 # systemd only: disable by default 51 if [ -e /bin/systemctl ] 52 then 53 /bin/systemctl disable sslh 54 fi 55 fi 37 56 ;; 38 57 *) -
trunk/debian/packages/debwrt-net/trunk/debian/rules
r776 r885 8 8 9 9 override_dh_auto_install: 10 install -o root -g root -d $(INSTDIR)/usr/sbin 11 install -o root -g root -d $(INSTDIR)/etc/network 12 install -o root -g root -d $(INSTDIR)/etc/firewall 13 install -o root -g root -d $(INSTDIR)/etc/hostapd 14 install -o root -g root -d $(INSTDIR)/etc/modprobe.d 15 install -o root -g root -d $(INSTDIR)/etc/sysctl.d 16 install -o root -g root -d $(INSTDIR)/etc/dnsmasq.d 17 install -o root -g root -d $(INSTDIR)/usr/share/doc/debwrt-net 18 install -o root -g root -m 755 usr/sbin/pciunbind $(INSTDIR)/usr/sbin/pciunbind 19 install -o root -g root -m 644 etc/network/interfaces.broadcom $(INSTDIR)/etc/network/interfaces.broadcom 20 install -o root -g root -m 644 etc/network/interfaces.atheros $(INSTDIR)/etc/network/interfaces.atheros 21 install -o root -g root -m 644 etc/network/interfaces.rspro $(INSTDIR)/etc/network/interfaces.rspro 22 install -o root -g root -m 644 etc/modprobe.d/wl.conf $(INSTDIR)/etc/modprobe.d/wl.conf 23 install -o root -g root -m 644 etc/modprobe.d/b43.conf $(INSTDIR)/etc/modprobe.d/b43.conf 24 install -o root -g root -m 755 etc/firewall/firewall.sh $(INSTDIR)/etc/firewall/firewall.sh 25 install -o root -g root -m 644 etc/sysctl.d/debwrt.conf $(INSTDIR)/etc/sysctl.d/debwrt.conf 26 install -o root -g root -m 644 usr/share/doc/debwrt-net/nas $(INSTDIR)/usr/share/doc/debwrt-net/nas 27 install -o root -g root -m 644 etc/dnsmasq.d/debwrt.conf $(INSTDIR)/etc/dnsmasq.d/debwrt.conf 28 10 mkdir -p $(INSTDIR) 11 cp -rav --target-directory=$(INSTDIR) etc 12 cp -rav --target-directory=$(INSTDIR) usr 13 chown -R root:root $(INSTDIR) -
trunk/debian/packages/debwrt-net/trunk/etc/firewall/firewall.sh
r778 r885 5 5 # Johan van Zoomeren <amain@debwrt.net> 6 6 7 astop= 8 astart= 9 aflush= 10 7 11 . /lib/lsb/init-functions 12 13 # Remove # here and below to enable transparent sslh support 14 #. $(dirname ${0})/sslh.inc.sh 8 15 9 16 IPT=/sbin/iptables … … 13 20 14 21 modprobe -a nf_conntrack_ipv4 \ 15 xt_state 22 xt_state \ 23 xt_multiport \ 24 xt_mark 16 25 } 17 26 … … 21 30 $IPT -t nat -F 22 31 $IPT -t nat -X 32 33 for flush in ${aflush} 34 do 35 ${flush} 36 done 23 37 } 24 38 … … 27 41 28 42 $IPT -t filter -A INPUT -m state --state RELATED,ESTABLISHED -i wan -j ACCEPT 43 # sslh on port 443 44 #$IPT -t filter -A INPUT -p tcp --dport 443 -i wan -j ACCEPT 29 45 $IPT -t filter -A INPUT -i wan -j DROP 30 46 … … 34 50 #$IPT -t nat -A POSTROUTING -o wan -j SNAT --to-source "replace: WAN-IF-IP" 35 51 $IPT -t nat -A POSTROUTING -o wan -j MASQUERADE 52 53 for start in ${astart} 54 do 55 ${start} 56 done 36 57 37 58 log_action_end_msg 0 -
trunk/debian/packages/nvram9/trunk/debian/changelog
r848 r885 1 nvram9 (0.0-1~debwrtSID+3) sid-debwrt-unstable; urgency=medium 2 3 * mini-buildd, attempt to fix dpkg-genchanges issue during port 4 5 -- Johan van Zoomeren <amain@debwrt.net> Sat, 03 Dec 2016 22:57:45 +0100 6 1 7 nvram9 (0.0-1~debwrtSID+2) sid-debwrt-unstable; urgency=medium 2 8 3 * Add Conflicts: nvram9 * Add Conflicts: nvram 4 10 5 11 -- Johan van Zoomeren <amain@debwrt.net> Sat, 03 Dec 2016 22:57:45 +0100
Note: See TracChangeset
for help on using the changeset viewer.