Branch: refs/heads/master Home: https://github.com/dtaht/Cerowrt-3.3 Commit: b284b583becd3a4da78dc934b382f8d3ae9e8c06 https://github.com/dtaht/Cerowrt-3.3/commit/b284b583becd3a4da78dc934b382f8d3ae9e8c06 Author: nbd Date: 2012-06-30 (Sat, 30 Jun 2012) Changed paths: M include/toolchain-build.mk M toolchain/binutils/Makefile M toolchain/gcc/initial/Makefile Log Message: ----------- toolchain: fix up lib64 symlink to lib before copying the initial prefix dir to avoid errors on copying git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32556 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: db73773bde1bd2660a1bf76988b794a6a8a74ab5 https://github.com/dtaht/Cerowrt-3.3/commit/db73773bde1bd2660a1bf76988b794a6a8a74ab5 Author: nbd Date: 2012-06-30 (Sat, 30 Jun 2012) Changed paths: M toolchain/Makefile M toolchain/uClibc/Makefile A toolchain/uClibc/common.mk A toolchain/uClibc/headers/Makefile A toolchain/uClibc/utils/Makefile Log Message: ----------- uClibc: split the package into the main directory and the headers/ and utils/ subdirectories to clean up build order and fix quilt support git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32557 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 8096c8d9bf2c0cd236642e736ca51bb5fa5e92b6 https://github.com/dtaht/Cerowrt-3.3/commit/8096c8d9bf2c0cd236642e736ca51bb5fa5e92b6 Author: nbd Date: 2012-06-30 (Sat, 30 Jun 2012) Changed paths: M toolchain/uClibc/common.mk Log Message: ----------- uClibc: add -Wno-unused-but-set-variable to get rid of unnecessary warning logspam git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32558 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 7b71f99fda115bf9294a55a7824fd49d56e77599 https://github.com/dtaht/Cerowrt-3.3/commit/7b71f99fda115bf9294a55a7824fd49d56e77599 Author: nbd Date: 2012-06-30 (Sat, 30 Jun 2012) Changed paths: M Config.in Log Message: ----------- config: tag parallel build options with high build breakage probability with a BROKEN dependency to discourage users from spamming us with tickets about them git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32559 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: f340efbd77cfafc82068493a99806dd026cc469b https://github.com/dtaht/Cerowrt-3.3/commit/f340efbd77cfafc82068493a99806dd026cc469b Author: Dave Taht Date: 2012-06-30 (Sat, 30 Jun 2012) Changed paths: M Config.in M include/toolchain-build.mk M toolchain/Makefile M toolchain/binutils/Makefile M toolchain/gcc/initial/Makefile M toolchain/uClibc/Makefile A toolchain/uClibc/common.mk A toolchain/uClibc/headers/Makefile A toolchain/uClibc/utils/Makefile Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: 9f93ad9ef03d1067d1180fabf75557129f749cf7 https://github.com/dtaht/Cerowrt-3.3/commit/9f93ad9ef03d1067d1180fabf75557129f749cf7 Author: jow Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M package/kernel/modules/netsupport.mk Log Message: ----------- kernel/modules: load pppol2tp after pppox l2tp_ppp needs to be loaded after pppox, otherwise it ends up like this: l2tp_ppp: Unknown symbol pppox_ioctl (err 0) ... during boot. I also fixed the dependency, it should be pppox rather than pppoe. Signed-off-by: Daniel Golle git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32562 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: b6a1b5d84d245142c7f92f2562f70de484e082dc https://github.com/dtaht/Cerowrt-3.3/commit/b6a1b5d84d245142c7f92f2562f70de484e082dc Author: jow Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M package/block-mount/files/50_determine_usb_root Log Message: ----------- Fix extroot by UUID Extroot works fine when the target device is specified by a path. It fails however if the device is specified by UUID (the target partition gets mounted much later by hotplug hooks). This is because the blkid command is no longer compiled into BusyBox (since changeset [1]) so it's unavailable for the preinit phase. The closest bug report I was able to find is [2], although the reporting person mentions that /tmp/overlay-disabled showed up which wasn't there in my case. This patch sets PATH and LD_LIBRARY_PATH environment variables so that the blkid command installed on the target device can be used by that particular preinit script. [1] https://dev.openwrt.org/changeset/26245 [2] https://dev.openwrt.org/ticket/10653 Signed-off-by: Jaroslaw Swierczynski git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32567 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 2caf3c66a27b6650b3c80373deea8acd647ed938 https://github.com/dtaht/Cerowrt-3.3/commit/2caf3c66a27b6650b3c80373deea8acd647ed938 Author: jow Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M package/dnsmasq/files/dnsmasq.init Log Message: ----------- [PATCH 1/4] package/dnsmasq: permit dhcp_option in global dnsmasq config section dnsmasq currently permits dhcp_options to be specified only in "config dhcp" sections of /etc/config/dhcp. When dnsmasq is providing DHCP service for multiple subnets and there are multiple "config dhcp" sections without "option ignore", it makes sense to allow dhcp_options that should apply globally in the "config dnsmasq" section of /etc/config/dhcp. dhcp_option is a list option. [jow: rework patch to apply after dhcp-option-force handling got introduced] Signed-off-by: Mark Mentovai git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32568 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 3a1e1be03a53fe424d9b7d7229edbd8e0e657fee https://github.com/dtaht/Cerowrt-3.3/commit/3a1e1be03a53fe424d9b7d7229edbd8e0e657fee Author: jow Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M package/dnsmasq/files/dnsmasq.init Log Message: ----------- package/dnsmasq: permit UCI configuration of --dhcp-fqdn option This adds a new boolean option, fqdn, to the "config dnsmasq" section of /etc/config/dhcp. The default is off. When set on, it enables the dhcp-fqdn option to dnsmasq. dhcp-fqdn causes dnsmasq's DNS server to not resolve unqualifed local hostnames. The "domain" option is required when using "fqdn". Local hostnames will remain available for lookup using fully-qualified names. Signed-off-by: Mark Mentovai git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32569 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 8b203dc52782bb019225998e7411d5a3c12b78dc https://github.com/dtaht/Cerowrt-3.3/commit/8b203dc52782bb019225998e7411d5a3c12b78dc Author: jow Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M package/dnsmasq/files/dnsmasq.init Log Message: ----------- [package] dnsmasq: introduce "add_local_hostname" and "add_local_domain" options - add_local_domain defaults to 1 and controls whether the local domain is written as search directive to the local resolv.conf - add_local_hostname defaults to 1 and controls whether A and PTR records are created automatically for the local hostname These change supersedes http://patchwork.openwrt.org/patch/2207/ and http://patchwork.openwrt.org/patch/2208/ git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32570 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 86db0188fa5295f2d06ffd503071751194b793e1 https://github.com/dtaht/Cerowrt-3.3/commit/86db0188fa5295f2d06ffd503071751194b793e1 Author: jow Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M include/image.mk Log Message: ----------- include/image.mk: /tmp should have mode 1777 On the off chance that the root filesystem's /tmp is used directly as a temporary directory instead of having a tmpfs mounted over it, it should have the sticky bit set. Signed-off-by: Mark Mentovai git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32572 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 2bd97dd89a42dc38b65c1a6ce10961a60dea1211 https://github.com/dtaht/Cerowrt-3.3/commit/2bd97dd89a42dc38b65c1a6ce10961a60dea1211 Author: jow Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M package/netifd/files/lib/netifd/proto/dhcp.sh Log Message: ----------- [package] netifd: repair dhcp client id option Busybox udhcpc dropped support for the -c option, instead it can be emulated by using -x 0x3d:id, change the dhcp protocol script accordingly and filter all colons from the id while we're at it. This change supersedes http://patchwork.openwrt.org/patch/1810/ git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32573 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 9f417d2f1ba9e09c903a83508dd305ef2464b9cd https://github.com/dtaht/Cerowrt-3.3/commit/9f417d2f1ba9e09c903a83508dd305ef2464b9cd Author: Dave Taht Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M include/image.mk M package/block-mount/files/50_determine_usb_root M package/dnsmasq/files/dnsmasq.init M package/kernel/modules/netsupport.mk Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: 9e62fd9410aff4d8a6252c296d4671fcf3b0bbbb https://github.com/dtaht/Cerowrt-3.3/commit/9e62fd9410aff4d8a6252c296d4671fcf3b0bbbb Author: Dave Taht Date: 2012-07-01 (Sun, 01 Jul 2012) Changed paths: M Config.in M include/image.mk M include/toolchain-build.mk M package/block-mount/files/50_determine_usb_root M package/dnsmasq/files/dnsmasq.init M package/kernel/modules/netsupport.mk M toolchain/Makefile M toolchain/binutils/Makefile M toolchain/gcc/initial/Makefile M toolchain/uClibc/Makefile A toolchain/uClibc/common.mk A toolchain/uClibc/headers/Makefile A toolchain/uClibc/utils/Makefile Log Message: ----------- Merge branch 'master' of /home/cero1/src/openwrt Commit: 9253d87a21cf26b0b6661ed690284493c77edd70 https://github.com/dtaht/Cerowrt-3.3/commit/9253d87a21cf26b0b6661ed690284493c77edd70 Author: jow Date: 2012-07-02 (Mon, 02 Jul 2012) Changed paths: M package/6to4/Makefile M package/6to4/files/6to4.sh Log Message: ----------- [package] 6to4: fix ifname resolving for adv_interface option (#11796) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32576 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 6b29592124be4659bc9317162afb238e0feb0712 https://github.com/dtaht/Cerowrt-3.3/commit/6b29592124be4659bc9317162afb238e0feb0712 Author: Dave Taht Date: 2012-07-02 (Mon, 02 Jul 2012) Changed paths: M package/6to4/Makefile M package/6to4/files/6to4.sh M package/netifd/files/lib/netifd/proto/dhcp.sh Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: 5f958bc1f81739fad61c91f920af963f8d5dca83 https://github.com/dtaht/Cerowrt-3.3/commit/5f958bc1f81739fad61c91f920af963f8d5dca83 Author: Dave Taht Date: 2012-07-02 (Mon, 02 Jul 2012) Changed paths: M package/6to4/Makefile M package/6to4/files/6to4.sh M package/netifd/files/lib/netifd/proto/dhcp.sh Log Message: ----------- Merge branch 'master' of /home/cero1/src/openwrt Commit: bdc39c62ca913f3444a0f3fb7a8600810ecb6866 https://github.com/dtaht/Cerowrt-3.3/commit/bdc39c62ca913f3444a0f3fb7a8600810ecb6866 Author: hauke Date: 2012-07-02 (Mon, 02 Jul 2012) Changed paths: M target/linux/brcm47xx/patches-3.3/020-bcma-move-parallel-flash-into-a-union.patch M target/linux/brcm47xx/patches-3.3/021-bcma-add-serial-flash-support-to-bcma.patch M target/linux/brcm47xx/patches-3.3/030-bcm47xx-bcma-nandflash.patch R target/linux/brcm47xx/patches-3.3/047-bcma-add-new-PCI-ID.patch R target/linux/brcm47xx/patches-3.3/052-bcma-complete-workaround-for-BCMA43224.patch R target/linux/brcm47xx/patches-3.3/182-bcma-scan-for-extra-address-space.patch R target/linux/brcm47xx/patches-3.3/232-ssb-recognise-ARM-Cortex-M3.patch R target/linux/brcm47xx/patches-3.3/233-bcma-fix-NP-in-bcma_core_pci_irq_ctl.patch M target/linux/brcm47xx/patches-3.3/999-wl_exports.patch M target/linux/generic/patches-3.3/020-ssb_update.patch M target/linux/generic/patches-3.3/025-bcma_backport.patch Log Message: ----------- kernel: ssb/bcma: update to version from wireless-testing tag master-2012-07-02 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32580 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: bea144caf2530f112ba60d954f4d7c653f9bf400 https://github.com/dtaht/Cerowrt-3.3/commit/bea144caf2530f112ba60d954f4d7c653f9bf400 Author: Dave Taht Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M target/linux/brcm47xx/patches-3.3/020-bcma-move-parallel-flash-into-a-union.patch M target/linux/brcm47xx/patches-3.3/021-bcma-add-serial-flash-support-to-bcma.patch M target/linux/brcm47xx/patches-3.3/030-bcm47xx-bcma-nandflash.patch R target/linux/brcm47xx/patches-3.3/047-bcma-add-new-PCI-ID.patch R target/linux/brcm47xx/patches-3.3/052-bcma-complete-workaround-for-BCMA43224.patch R target/linux/brcm47xx/patches-3.3/182-bcma-scan-for-extra-address-space.patch R target/linux/brcm47xx/patches-3.3/232-ssb-recognise-ARM-Cortex-M3.patch R target/linux/brcm47xx/patches-3.3/233-bcma-fix-NP-in-bcma_core_pci_irq_ctl.patch M target/linux/brcm47xx/patches-3.3/999-wl_exports.patch M target/linux/generic/patches-3.3/020-ssb_update.patch M target/linux/generic/patches-3.3/025-bcma_backport.patch Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: 0ef855fc75f1af18102f7fa453041b61af660b34 https://github.com/dtaht/Cerowrt-3.3/commit/0ef855fc75f1af18102f7fa453041b61af660b34 Author: florian Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M target/linux/brcm63xx/patches-3.3/013-spi-bcm63xx-convert-to-the-pump-message-infrastructu.patch Log Message: ----------- [brcm63xx] refresh patches git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32581 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 4b157f4b59c22aa358188d20fc925f57843d7075 https://github.com/dtaht/Cerowrt-3.3/commit/4b157f4b59c22aa358188d20fc925f57843d7075 Author: nbd Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M toolchain/Makefile Log Message: ----------- toolchain: fix libc headers dependency on kernel headers + minimal gcc git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32582 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: d4f13972f8563c005b18297d4dd9a40ab7e8dc31 https://github.com/dtaht/Cerowrt-3.3/commit/d4f13972f8563c005b18297d4dd9a40ab7e8dc31 Author: nbd Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M toolchain/Makefile M toolchain/eglibc/Makefile A toolchain/eglibc/common.mk A toolchain/eglibc/headers/Makefile Log Message: ----------- toolchain: sync eglibc headers/build split with uclibc changes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32584 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: db1a0d339ede0eac49d1f2d2a6574b0fd8f16503 https://github.com/dtaht/Cerowrt-3.3/commit/db1a0d339ede0eac49d1f2d2a6574b0fd8f16503 Author: juhosg Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M target/linux/ar71xx/files/arch/mips/ath79/mach-all0258n.c M target/linux/ar71xx/image/Makefile Log Message: ----------- ar71xx: remove the built-in MTD map of the ALL0258N Pass the mtd_layout via the kernel command line instead. Also increase the kernel partition size to 1024k, so current kernel can fit in. Signed-off-by: Daniel Golle git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32585 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 641595b79aacc036a21116a578b8cad093bb02b4 https://github.com/dtaht/Cerowrt-3.3/commit/641595b79aacc036a21116a578b8cad093bb02b4 Author: juhosg Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c Log Message: ----------- ar71xx: improve MDIO busy wait code git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32586 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 0a5e27843553ec1beb43428168c9153717a77017 https://github.com/dtaht/Cerowrt-3.3/commit/0a5e27843553ec1beb43428168c9153717a77017 Author: jow Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M package/base-files/files/lib/upgrade/common.sh Log Message: ----------- [package] base-files: ensure that /sys is available during sysupgrade, some essential services like om-watchdog need it git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32587 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 08ec8f0d80ba9971f90f1a8aa29b711a95a25a35 https://github.com/dtaht/Cerowrt-3.3/commit/08ec8f0d80ba9971f90f1a8aa29b711a95a25a35 Author: juhosg Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M package/mac80211/Makefile A package/mac80211/patches/570-ath9k-define-DEVID-for-QCA955x.patch A package/mac80211/patches/571-ath9k-define-MAC-version-for-AR9550.patch A package/mac80211/patches/572-ath9k-set-MAC-version-for-AR9550.patch A package/mac80211/patches/573-ath9k-add-platform_device_id-for-AR9550.patch A package/mac80211/patches/574-ath9k-add-BB-name-string-for-AR9550.patch A package/mac80211/patches/575-ath9k-clear-pciexpress-flag-for-AR9550.patch A package/mac80211/patches/576-ath9k-enable-TX-RX-data-byte-swap-for-AR9550.patch A package/mac80211/patches/577-ath9k-add-initvals-for-AR9550.patch A package/mac80211/patches/578-ath9k-add-mode-register-initialization-code-for-AR95.patch A package/mac80211/patches/579-ath9k-read-spur-frequency-information-from-eeprom-fo.patch A package/mac80211/patches/580-ath9k-fix-XPABIASLEVEL-settings-for-AR9550.patch A package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch A package/mac80211/patches/582-ath9k-fix-PAPRD-settings-for-AR9550.patch A package/mac80211/patches/583-ath9k-fix-RF-channel-frequency-configuration-for-AR9.patch A package/mac80211/patches/584-ath9k-disable-SYNC_HOST1_FATAL-interrupts-for-AR9550.patch A package/mac80211/patches/585-ath9k-skip-internal-regulator-configuration-for-AR95.patch A package/mac80211/patches/586-ath9k-fix-PLL-initialization-for-AR9550.patch A package/mac80211/patches/587-ath9k-enable-PLL-workaround-for-AR9550.patch A package/mac80211/patches/588-ath9k-set-4ADDRESS-bit-in-RX-filter-for-AR9550.patch A package/mac80211/patches/589-ath9k-enable-support-for-AR9550.patch Log Message: ----------- mac80211: add support for AR9550 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32588 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 16ba0265da6ec31d1bbde505048caab727402332 https://github.com/dtaht/Cerowrt-3.3/commit/16ba0265da6ec31d1bbde505048caab727402332 Author: nbd Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: A package/mac80211/patches/570-ath9k_config_qlen.patch Log Message: ----------- ath9k: add a patch to make the hw queue length configurable via debugfs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32589 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 5a8d0fdaf3fda851347041d42ce3753454afa296 https://github.com/dtaht/Cerowrt-3.3/commit/5a8d0fdaf3fda851347041d42ce3753454afa296 Author: jogo Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: A target/linux/generic/patches-3.3/048-spi-Dont-call-prepare-unprepare-transfer-if-not-popu.patch Log Message: ----------- kernel: generic: spi: allow empty (un)prepare transfer git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32590 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: cc1b8fb1cb225208e797bf235ccc8dd45219c74d https://github.com/dtaht/Cerowrt-3.3/commit/cc1b8fb1cb225208e797bf235ccc8dd45219c74d Author: jogo Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: A target/linux/brcm63xx/patches-3.3/017-MIPS-BCM63XX-fix-BCM6368-IPSec-clock-bit.patch A target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch A target/linux/brcm63xx/patches-3.3/019-MIPS-BCM63XX-add-RNG-peripheral-definitions.patch A target/linux/brcm63xx/patches-3.3/020-MIPS-BCM63XX-add-RNG-driver-platform_device-stub.patch A target/linux/brcm63xx/patches-3.3/021-hw_random-add-Broadcom-BCM63xx-RNG-driver.patch A target/linux/brcm63xx/patches-3.3/022-MIPS-BCM63XX-Move-flash-registration-out-of-board_bc.patch A target/linux/brcm63xx/patches-3.3/023-MIPS-BCM63XX-Add-flash-type-detection.patch A target/linux/brcm63xx/patches-3.3/024-MIPS-BCM63XX-Use-the-Chip-ID-register-for-identifyin.patch A target/linux/brcm63xx/patches-3.3/025-MIPS-BCM63XX-Add-basic-BCM6328-support.patch A target/linux/brcm63xx/patches-3.3/026-MIPS-BCM63XX-Move-the-PCI-initialization-into-its-ow.patch A target/linux/brcm63xx/patches-3.3/027-MIPS-BCM63XX-Add-PCIe-Support-for-BCM6328.patch A target/linux/brcm63xx/patches-3.3/028-MIPS-Expose-PCIe-drivers-for-MIPS.patch R target/linux/brcm63xx/patches-3.3/101-MIPS-BCM63XX-fix-BCM6368-IPSec-clock-bit.patch R target/linux/brcm63xx/patches-3.3/102-MIPS-BCM63XX-add-support-for-ipsec-clock.patch R target/linux/brcm63xx/patches-3.3/103-MIPS-BCM63XX-add-TRNG-peripheral-definitions.patch R target/linux/brcm63xx/patches-3.3/104-MIPS-BCM63XX-add-RNG-driver-platform_device-stub.patch R target/linux/brcm63xx/patches-3.3/105-hw_random-add-Broadcom-BCM63xx-RNG-driver.patch R target/linux/brcm63xx/patches-3.3/200-MIPS-expose-PCIe-drivers-for-MIPS.patch M target/linux/brcm63xx/patches-3.3/300-reset_buttons.patch M target/linux/brcm63xx/patches-3.3/301-led_count.patch M target/linux/brcm63xx/patches-3.3/302-extended-platform-devices.patch M target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch M target/linux/brcm63xx/patches-3.3/304-boardid_fixup.patch M target/linux/brcm63xx/patches-3.3/305-missing_ext_irq_bits.patch R target/linux/brcm63xx/patches-3.3/306-MIPS-BCM63XX-register-devices-earlier.patch A target/linux/brcm63xx/patches-3.3/306-Revert-MIPS-BCM63XX-Call-board_register_device-from-.patch A target/linux/brcm63xx/patches-3.3/307-MIPS-BCM63XX-allow-second-UART-on-BCM6328.patch R target/linux/brcm63xx/patches-3.3/307-MIPS-BCM63XX-explicitly-register-the-pci-bus.patch A target/linux/brcm63xx/patches-3.3/308-MIPS-BCM63XX-expose-the-HS-SPI-clock.patch R target/linux/brcm63xx/patches-3.3/308-MIPS-BCM63XX-move-flash-registration-out-of-board_bc.patch A target/linux/brcm63xx/patches-3.3/309-MIPS-BCM63XX-add-HSSPI-register-definitions.patch R target/linux/brcm63xx/patches-3.3/309-MIPS-BCM63XX-add-flash-type-detection.patch R target/linux/brcm63xx/patches-3.3/310-MIPS-BCM63XX-use-the-Chip-ID-register-for-identifyin.patch A target/linux/brcm63xx/patches-3.3/310-board_leds_naming.patch R target/linux/brcm63xx/patches-3.3/311-MIPS-BCM63XX-add-MISC-register-set-definition.patch R target/linux/brcm63xx/patches-3.3/312-MIPS-BCM63XX-add-basic-BCM6328-CPU-support.patch R target/linux/brcm63xx/patches-3.3/313-MIPS-BCM63XX-add-flash-type-detection-for-BCM6328.patch R target/linux/brcm63xx/patches-3.3/314-MIPS-BCM63XX-allow-second-UART-on-BCM6328.patch R target/linux/brcm63xx/patches-3.3/315-MIPS-BCM63XX-Move-the-PCI-initialization-into-its-ow.patch R target/linux/brcm63xx/patches-3.3/316-MIPS-BCM63XX-Add-PCIe-register-set-definitions.patch R target/linux/brcm63xx/patches-3.3/317-MIPS-BCM63XX-Add-PCIe-Support-for-BCM6328.patch R target/linux/brcm63xx/patches-3.3/318-MIPS-BCM63XX-expose-the-HS-SPI-clock.patch R target/linux/brcm63xx/patches-3.3/319-board_leds_naming.patch M target/linux/brcm63xx/patches-3.3/401-MIPS-BCM63XX-register-ohci-device.patch M target/linux/brcm63xx/patches-3.3/403-MIPS-BCM63XX-register-ehci-device.patch M target/linux/brcm63xx/patches-3.3/404-bcm963xx_flashmap.patch M target/linux/brcm63xx/patches-3.3/408-6358-enet1-external-mii-clk.patch M target/linux/brcm63xx/patches-3.3/414-bcm63xx_enet-split-dma-registers-access.patch M target/linux/brcm63xx/patches-3.3/415-bcm63xx_enet-add-support-for-bcm6368-internal-ethern.patch M target/linux/brcm63xx/patches-3.3/418-MIPS-BCM63XX-add-HS-SPI-platform-device-and-register.patch M target/linux/brcm63xx/patches-3.3/419-SPI-MIPS-BCM63XX-Add-HS-SPI-driver.patch M target/linux/brcm63xx/patches-3.3/420-MIPS-BCM63XX-Register-SPI-flash-if-present.patch M target/linux/brcm63xx/patches-3.3/421-MIPS-BCM63XX-move-nvram-related-functions-into-their.patch M target/linux/brcm63xx/patches-3.3/425-BCM63XX-allow-providing-fixup-data-in-board-data.patch M target/linux/brcm63xx/patches-3.3/427-MTD-m25p80-allow-passing-pp_data.patch M target/linux/brcm63xx/patches-3.3/428-BCM63XX-add-a-fixup-for-ath9k-devices.patch M target/linux/brcm63xx/patches-3.3/430-MIPS-BCM63XX-pass-caldata-info-to-flash.patch M target/linux/brcm63xx/patches-3.3/501-board-NB4.patch M target/linux/brcm63xx/patches-3.3/511-board_V2500V.patch M target/linux/brcm63xx/patches-3.3/520-bcm63xx-add-support-for-96368MVWG-board.patch Log Message: ----------- bcm63xx: update patches to latest upstream versions git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32591 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: c60cd5dd54790d032d6fe41b75253e76a7c8e5a2 https://github.com/dtaht/Cerowrt-3.3/commit/c60cd5dd54790d032d6fe41b75253e76a7c8e5a2 Author: jogo Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M target/linux/brcm63xx/patches-3.3/429-MTD-bcm63xxpart-allow-passing-a-caldata-offset.patch Log Message: ----------- bcm63xx: fix second caldata address calculation thanks Noltari for spotting this. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32592 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 4f860c88aa52b3d9553e7be074f58d3aa07e43c3 https://github.com/dtaht/Cerowrt-3.3/commit/4f860c88aa52b3d9553e7be074f58d3aa07e43c3 Author: jogo Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M target/linux/brcm63xx/image/Makefile M target/linux/brcm63xx/patches-3.3/516-board_96348A-122.patch Log Message: ----------- bcm63xx: 96348A-122 improvements (Comtrend 5365) 1) Improve WLAN button. 2) Add 96348A-122 image. Signed-off-by: Álvaro Fernández Rojas git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32593 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: c94a6d0b71ba3d7542267c89586e54d3044c9ac4 https://github.com/dtaht/Cerowrt-3.3/commit/c94a6d0b71ba3d7542267c89586e54d3044c9ac4 Author: jogo Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M target/linux/brcm63xx/modules.mk Log Message: ----------- bcm63xx: bcm63xx-spi does not depend on spi-bitbang git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32594 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 6f08482ccee86ca348b47e6f6d8315c6ccda0371 https://github.com/dtaht/Cerowrt-3.3/commit/6f08482ccee86ca348b47e6f6d8315c6ccda0371 Author: Dave Taht Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M package/base-files/files/lib/upgrade/common.sh M package/mac80211/Makefile A package/mac80211/patches/570-ath9k-define-DEVID-for-QCA955x.patch A package/mac80211/patches/570-ath9k_config_qlen.patch A package/mac80211/patches/571-ath9k-define-MAC-version-for-AR9550.patch A package/mac80211/patches/572-ath9k-set-MAC-version-for-AR9550.patch A package/mac80211/patches/573-ath9k-add-platform_device_id-for-AR9550.patch A package/mac80211/patches/574-ath9k-add-BB-name-string-for-AR9550.patch A package/mac80211/patches/575-ath9k-clear-pciexpress-flag-for-AR9550.patch A package/mac80211/patches/576-ath9k-enable-TX-RX-data-byte-swap-for-AR9550.patch A package/mac80211/patches/577-ath9k-add-initvals-for-AR9550.patch A package/mac80211/patches/578-ath9k-add-mode-register-initialization-code-for-AR95.patch A package/mac80211/patches/579-ath9k-read-spur-frequency-information-from-eeprom-fo.patch A package/mac80211/patches/580-ath9k-fix-XPABIASLEVEL-settings-for-AR9550.patch A package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch A package/mac80211/patches/582-ath9k-fix-PAPRD-settings-for-AR9550.patch A package/mac80211/patches/583-ath9k-fix-RF-channel-frequency-configuration-for-AR9.patch A package/mac80211/patches/584-ath9k-disable-SYNC_HOST1_FATAL-interrupts-for-AR9550.patch A package/mac80211/patches/585-ath9k-skip-internal-regulator-configuration-for-AR95.patch A package/mac80211/patches/586-ath9k-fix-PLL-initialization-for-AR9550.patch A package/mac80211/patches/587-ath9k-enable-PLL-workaround-for-AR9550.patch A package/mac80211/patches/588-ath9k-set-4ADDRESS-bit-in-RX-filter-for-AR9550.patch A package/mac80211/patches/589-ath9k-enable-support-for-AR9550.patch M target/linux/ar71xx/files/arch/mips/ath79/mach-all0258n.c M target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c M target/linux/ar71xx/image/Makefile M target/linux/brcm63xx/image/Makefile M target/linux/brcm63xx/modules.mk M target/linux/brcm63xx/patches-3.3/013-spi-bcm63xx-convert-to-the-pump-message-infrastructu.patch A target/linux/brcm63xx/patches-3.3/017-MIPS-BCM63XX-fix-BCM6368-IPSec-clock-bit.patch A target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch A target/linux/brcm63xx/patches-3.3/019-MIPS-BCM63XX-add-RNG-peripheral-definitions.patch A target/linux/brcm63xx/patches-3.3/020-MIPS-BCM63XX-add-RNG-driver-platform_device-stub.patch A target/linux/brcm63xx/patches-3.3/021-hw_random-add-Broadcom-BCM63xx-RNG-driver.patch A target/linux/brcm63xx/patches-3.3/022-MIPS-BCM63XX-Move-flash-registration-out-of-board_bc.patch A target/linux/brcm63xx/patches-3.3/023-MIPS-BCM63XX-Add-flash-type-detection.patch A target/linux/brcm63xx/patches-3.3/024-MIPS-BCM63XX-Use-the-Chip-ID-register-for-identifyin.patch A target/linux/brcm63xx/patches-3.3/025-MIPS-BCM63XX-Add-basic-BCM6328-support.patch A target/linux/brcm63xx/patches-3.3/026-MIPS-BCM63XX-Move-the-PCI-initialization-into-its-ow.patch A target/linux/brcm63xx/patches-3.3/027-MIPS-BCM63XX-Add-PCIe-Support-for-BCM6328.patch A target/linux/brcm63xx/patches-3.3/028-MIPS-Expose-PCIe-drivers-for-MIPS.patch R target/linux/brcm63xx/patches-3.3/101-MIPS-BCM63XX-fix-BCM6368-IPSec-clock-bit.patch R target/linux/brcm63xx/patches-3.3/102-MIPS-BCM63XX-add-support-for-ipsec-clock.patch R target/linux/brcm63xx/patches-3.3/103-MIPS-BCM63XX-add-TRNG-peripheral-definitions.patch R target/linux/brcm63xx/patches-3.3/104-MIPS-BCM63XX-add-RNG-driver-platform_device-stub.patch R target/linux/brcm63xx/patches-3.3/105-hw_random-add-Broadcom-BCM63xx-RNG-driver.patch R target/linux/brcm63xx/patches-3.3/200-MIPS-expose-PCIe-drivers-for-MIPS.patch M target/linux/brcm63xx/patches-3.3/300-reset_buttons.patch M target/linux/brcm63xx/patches-3.3/301-led_count.patch M target/linux/brcm63xx/patches-3.3/302-extended-platform-devices.patch M target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch M target/linux/brcm63xx/patches-3.3/304-boardid_fixup.patch M target/linux/brcm63xx/patches-3.3/305-missing_ext_irq_bits.patch R target/linux/brcm63xx/patches-3.3/306-MIPS-BCM63XX-register-devices-earlier.patch A target/linux/brcm63xx/patches-3.3/306-Revert-MIPS-BCM63XX-Call-board_register_device-from-.patch A target/linux/brcm63xx/patches-3.3/307-MIPS-BCM63XX-allow-second-UART-on-BCM6328.patch R target/linux/brcm63xx/patches-3.3/307-MIPS-BCM63XX-explicitly-register-the-pci-bus.patch A target/linux/brcm63xx/patches-3.3/308-MIPS-BCM63XX-expose-the-HS-SPI-clock.patch R target/linux/brcm63xx/patches-3.3/308-MIPS-BCM63XX-move-flash-registration-out-of-board_bc.patch A target/linux/brcm63xx/patches-3.3/309-MIPS-BCM63XX-add-HSSPI-register-definitions.patch R target/linux/brcm63xx/patches-3.3/309-MIPS-BCM63XX-add-flash-type-detection.patch R target/linux/brcm63xx/patches-3.3/310-MIPS-BCM63XX-use-the-Chip-ID-register-for-identifyin.patch A target/linux/brcm63xx/patches-3.3/310-board_leds_naming.patch R target/linux/brcm63xx/patches-3.3/311-MIPS-BCM63XX-add-MISC-register-set-definition.patch R target/linux/brcm63xx/patches-3.3/312-MIPS-BCM63XX-add-basic-BCM6328-CPU-support.patch R target/linux/brcm63xx/patches-3.3/313-MIPS-BCM63XX-add-flash-type-detection-for-BCM6328.patch R target/linux/brcm63xx/patches-3.3/314-MIPS-BCM63XX-allow-second-UART-on-BCM6328.patch R target/linux/brcm63xx/patches-3.3/315-MIPS-BCM63XX-Move-the-PCI-initialization-into-its-ow.patch R target/linux/brcm63xx/patches-3.3/316-MIPS-BCM63XX-Add-PCIe-register-set-definitions.patch R target/linux/brcm63xx/patches-3.3/317-MIPS-BCM63XX-Add-PCIe-Support-for-BCM6328.patch R target/linux/brcm63xx/patches-3.3/318-MIPS-BCM63XX-expose-the-HS-SPI-clock.patch R target/linux/brcm63xx/patches-3.3/319-board_leds_naming.patch M target/linux/brcm63xx/patches-3.3/401-MIPS-BCM63XX-register-ohci-device.patch M target/linux/brcm63xx/patches-3.3/403-MIPS-BCM63XX-register-ehci-device.patch M target/linux/brcm63xx/patches-3.3/404-bcm963xx_flashmap.patch M target/linux/brcm63xx/patches-3.3/408-6358-enet1-external-mii-clk.patch M target/linux/brcm63xx/patches-3.3/414-bcm63xx_enet-split-dma-registers-access.patch M target/linux/brcm63xx/patches-3.3/415-bcm63xx_enet-add-support-for-bcm6368-internal-ethern.patch M target/linux/brcm63xx/patches-3.3/418-MIPS-BCM63XX-add-HS-SPI-platform-device-and-register.patch M target/linux/brcm63xx/patches-3.3/419-SPI-MIPS-BCM63XX-Add-HS-SPI-driver.patch M target/linux/brcm63xx/patches-3.3/420-MIPS-BCM63XX-Register-SPI-flash-if-present.patch M target/linux/brcm63xx/patches-3.3/421-MIPS-BCM63XX-move-nvram-related-functions-into-their.patch M target/linux/brcm63xx/patches-3.3/425-BCM63XX-allow-providing-fixup-data-in-board-data.patch M target/linux/brcm63xx/patches-3.3/427-MTD-m25p80-allow-passing-pp_data.patch M target/linux/brcm63xx/patches-3.3/428-BCM63XX-add-a-fixup-for-ath9k-devices.patch M target/linux/brcm63xx/patches-3.3/429-MTD-bcm63xxpart-allow-passing-a-caldata-offset.patch M target/linux/brcm63xx/patches-3.3/430-MIPS-BCM63XX-pass-caldata-info-to-flash.patch M target/linux/brcm63xx/patches-3.3/501-board-NB4.patch M target/linux/brcm63xx/patches-3.3/511-board_V2500V.patch M target/linux/brcm63xx/patches-3.3/516-board_96348A-122.patch M target/linux/brcm63xx/patches-3.3/520-bcm63xx-add-support-for-96368MVWG-board.patch A target/linux/generic/patches-3.3/048-spi-Dont-call-prepare-unprepare-transfer-if-not-popu.patch M toolchain/Makefile M toolchain/eglibc/Makefile A toolchain/eglibc/common.mk A toolchain/eglibc/headers/Makefile Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: 2b972426d7f7c493e810cd86b7e532fbbadd028f https://github.com/dtaht/Cerowrt-3.3/commit/2b972426d7f7c493e810cd86b7e532fbbadd028f Author: thepeople Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: A package/mac80211/patches/440-ath5k_channel_bw_debugfs.patch Log Message: ----------- commit patch from https://lists.ath5k.org/pipermail/ath5k-devel/2011-November/005043.html, fixed up for newer ath5k and added in more radios. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32595 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 36f95026ed1c52ad17e32b876914a9fc7461b45c https://github.com/dtaht/Cerowrt-3.3/commit/36f95026ed1c52ad17e32b876914a9fc7461b45c Author: thepeople Date: 2012-07-03 (Tue, 03 Jul 2012) Changed paths: M package/mac80211/files/lib/wifi/mac80211.sh Log Message: ----------- mac80211: make channel bandwidth setting generic git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32596 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 08a9c557e0a36fa609c5669aca8d1048dbac34f4 https://github.com/dtaht/Cerowrt-3.3/commit/08a9c557e0a36fa609c5669aca8d1048dbac34f4 Author: nbd Date: 2012-07-04 (Wed, 04 Jul 2012) Changed paths: M target/linux/ar71xx/image/Makefile Log Message: ----------- ar71xx: update the EW Dorin MTD layout, increase kernel partition size (requested by EW) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32599 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 6a288531d72ba465156ffefa3f0ce02e1935afdf https://github.com/dtaht/Cerowrt-3.3/commit/6a288531d72ba465156ffefa3f0ce02e1935afdf Author: jow Date: 2012-07-04 (Wed, 04 Jul 2012) Changed paths: M package/mtd/src/mtd.c Log Message: ----------- mtd - add partition offset parameter The offset parameter can be used to write the data at the offset instead of writing it to the beginning of the partition. Signed-off-by: Marek Linder git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32600 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: dd97bbee8a27f628f820f135263d073bb435c493 https://github.com/dtaht/Cerowrt-3.3/commit/dd97bbee8a27f628f820f135263d073bb435c493 Author: jow Date: 2012-07-04 (Wed, 04 Jul 2012) Changed paths: M package/mtd/src/fis.c Log Message: ----------- mtd - remove partition table assumption when writing fis table When mtd alters the fis partition table it assumes that the first partition table entry also is the first logical parition table entry. For instance our table could look like this (irrelevant partitions put aside): * vmlinux.bin.l7 0xA8710000 * rootfs 0xA8030000 Here mtd would assume vmlinux.bin.l7 being the first partition and use its address to calculate the size and offset which ultimately leads to a broken partition table. This patch alters the behavior by checking what partition has the smaller address to do the calculations based on that address. Signed-off-by: Marek Lindner git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32601 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 4d112b0c2da38b94ddb9c9e6b547c6e81b842522 https://github.com/dtaht/Cerowrt-3.3/commit/4d112b0c2da38b94ddb9c9e6b547c6e81b842522 Author: Dave Taht Date: 2012-07-04 (Wed, 04 Jul 2012) Changed paths: M package/mac80211/files/lib/wifi/mac80211.sh A package/mac80211/patches/440-ath5k_channel_bw_debugfs.patch M package/mtd/src/fis.c M package/mtd/src/mtd.c M target/linux/ar71xx/image/Makefile Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: 334d6b89def0ad69e1ab8717049b168a46bc2cd9 https://github.com/dtaht/Cerowrt-3.3/commit/334d6b89def0ad69e1ab8717049b168a46bc2cd9 Author: Dave Taht Date: 2012-07-04 (Wed, 04 Jul 2012) Changed paths: M package/base-files/files/lib/upgrade/common.sh M package/mac80211/Makefile M package/mac80211/files/lib/wifi/mac80211.sh A package/mac80211/patches/440-ath5k_channel_bw_debugfs.patch A package/mac80211/patches/570-ath9k-define-DEVID-for-QCA955x.patch A package/mac80211/patches/570-ath9k_config_qlen.patch A package/mac80211/patches/571-ath9k-define-MAC-version-for-AR9550.patch A package/mac80211/patches/572-ath9k-set-MAC-version-for-AR9550.patch A package/mac80211/patches/573-ath9k-add-platform_device_id-for-AR9550.patch A package/mac80211/patches/574-ath9k-add-BB-name-string-for-AR9550.patch A package/mac80211/patches/575-ath9k-clear-pciexpress-flag-for-AR9550.patch A package/mac80211/patches/576-ath9k-enable-TX-RX-data-byte-swap-for-AR9550.patch A package/mac80211/patches/577-ath9k-add-initvals-for-AR9550.patch A package/mac80211/patches/578-ath9k-add-mode-register-initialization-code-for-AR95.patch A package/mac80211/patches/579-ath9k-read-spur-frequency-information-from-eeprom-fo.patch A package/mac80211/patches/580-ath9k-fix-XPABIASLEVEL-settings-for-AR9550.patch A package/mac80211/patches/581-ath9k-fix-antenna-control-configuration-for-AR9550.patch A package/mac80211/patches/582-ath9k-fix-PAPRD-settings-for-AR9550.patch A package/mac80211/patches/583-ath9k-fix-RF-channel-frequency-configuration-for-AR9.patch A package/mac80211/patches/584-ath9k-disable-SYNC_HOST1_FATAL-interrupts-for-AR9550.patch A package/mac80211/patches/585-ath9k-skip-internal-regulator-configuration-for-AR95.patch A package/mac80211/patches/586-ath9k-fix-PLL-initialization-for-AR9550.patch A package/mac80211/patches/587-ath9k-enable-PLL-workaround-for-AR9550.patch A package/mac80211/patches/588-ath9k-set-4ADDRESS-bit-in-RX-filter-for-AR9550.patch A package/mac80211/patches/589-ath9k-enable-support-for-AR9550.patch M package/mtd/src/fis.c M package/mtd/src/mtd.c M target/linux/ar71xx/files/arch/mips/ath79/mach-all0258n.c M target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c M target/linux/ar71xx/image/Makefile M target/linux/brcm47xx/patches-3.3/020-bcma-move-parallel-flash-into-a-union.patch M target/linux/brcm47xx/patches-3.3/021-bcma-add-serial-flash-support-to-bcma.patch M target/linux/brcm47xx/patches-3.3/030-bcm47xx-bcma-nandflash.patch R target/linux/brcm47xx/patches-3.3/047-bcma-add-new-PCI-ID.patch R target/linux/brcm47xx/patches-3.3/052-bcma-complete-workaround-for-BCMA43224.patch R target/linux/brcm47xx/patches-3.3/182-bcma-scan-for-extra-address-space.patch R target/linux/brcm47xx/patches-3.3/232-ssb-recognise-ARM-Cortex-M3.patch R target/linux/brcm47xx/patches-3.3/233-bcma-fix-NP-in-bcma_core_pci_irq_ctl.patch M target/linux/brcm47xx/patches-3.3/999-wl_exports.patch M target/linux/brcm63xx/image/Makefile M target/linux/brcm63xx/modules.mk M target/linux/brcm63xx/patches-3.3/013-spi-bcm63xx-convert-to-the-pump-message-infrastructu.patch A target/linux/brcm63xx/patches-3.3/017-MIPS-BCM63XX-fix-BCM6368-IPSec-clock-bit.patch A target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch A target/linux/brcm63xx/patches-3.3/019-MIPS-BCM63XX-add-RNG-peripheral-definitions.patch A target/linux/brcm63xx/patches-3.3/020-MIPS-BCM63XX-add-RNG-driver-platform_device-stub.patch A target/linux/brcm63xx/patches-3.3/021-hw_random-add-Broadcom-BCM63xx-RNG-driver.patch A target/linux/brcm63xx/patches-3.3/022-MIPS-BCM63XX-Move-flash-registration-out-of-board_bc.patch A target/linux/brcm63xx/patches-3.3/023-MIPS-BCM63XX-Add-flash-type-detection.patch A target/linux/brcm63xx/patches-3.3/024-MIPS-BCM63XX-Use-the-Chip-ID-register-for-identifyin.patch A target/linux/brcm63xx/patches-3.3/025-MIPS-BCM63XX-Add-basic-BCM6328-support.patch A target/linux/brcm63xx/patches-3.3/026-MIPS-BCM63XX-Move-the-PCI-initialization-into-its-ow.patch A target/linux/brcm63xx/patches-3.3/027-MIPS-BCM63XX-Add-PCIe-Support-for-BCM6328.patch A target/linux/brcm63xx/patches-3.3/028-MIPS-Expose-PCIe-drivers-for-MIPS.patch R target/linux/brcm63xx/patches-3.3/101-MIPS-BCM63XX-fix-BCM6368-IPSec-clock-bit.patch R target/linux/brcm63xx/patches-3.3/102-MIPS-BCM63XX-add-support-for-ipsec-clock.patch R target/linux/brcm63xx/patches-3.3/103-MIPS-BCM63XX-add-TRNG-peripheral-definitions.patch R target/linux/brcm63xx/patches-3.3/104-MIPS-BCM63XX-add-RNG-driver-platform_device-stub.patch R target/linux/brcm63xx/patches-3.3/105-hw_random-add-Broadcom-BCM63xx-RNG-driver.patch R target/linux/brcm63xx/patches-3.3/200-MIPS-expose-PCIe-drivers-for-MIPS.patch M target/linux/brcm63xx/patches-3.3/300-reset_buttons.patch M target/linux/brcm63xx/patches-3.3/301-led_count.patch M target/linux/brcm63xx/patches-3.3/302-extended-platform-devices.patch M target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch M target/linux/brcm63xx/patches-3.3/304-boardid_fixup.patch M target/linux/brcm63xx/patches-3.3/305-missing_ext_irq_bits.patch R target/linux/brcm63xx/patches-3.3/306-MIPS-BCM63XX-register-devices-earlier.patch A target/linux/brcm63xx/patches-3.3/306-Revert-MIPS-BCM63XX-Call-board_register_device-from-.patch A target/linux/brcm63xx/patches-3.3/307-MIPS-BCM63XX-allow-second-UART-on-BCM6328.patch R target/linux/brcm63xx/patches-3.3/307-MIPS-BCM63XX-explicitly-register-the-pci-bus.patch A target/linux/brcm63xx/patches-3.3/308-MIPS-BCM63XX-expose-the-HS-SPI-clock.patch R target/linux/brcm63xx/patches-3.3/308-MIPS-BCM63XX-move-flash-registration-out-of-board_bc.patch A target/linux/brcm63xx/patches-3.3/309-MIPS-BCM63XX-add-HSSPI-register-definitions.patch R target/linux/brcm63xx/patches-3.3/309-MIPS-BCM63XX-add-flash-type-detection.patch R target/linux/brcm63xx/patches-3.3/310-MIPS-BCM63XX-use-the-Chip-ID-register-for-identifyin.patch A target/linux/brcm63xx/patches-3.3/310-board_leds_naming.patch R target/linux/brcm63xx/patches-3.3/311-MIPS-BCM63XX-add-MISC-register-set-definition.patch R target/linux/brcm63xx/patches-3.3/312-MIPS-BCM63XX-add-basic-BCM6328-CPU-support.patch R target/linux/brcm63xx/patches-3.3/313-MIPS-BCM63XX-add-flash-type-detection-for-BCM6328.patch R target/linux/brcm63xx/patches-3.3/314-MIPS-BCM63XX-allow-second-UART-on-BCM6328.patch R target/linux/brcm63xx/patches-3.3/315-MIPS-BCM63XX-Move-the-PCI-initialization-into-its-ow.patch R target/linux/brcm63xx/patches-3.3/316-MIPS-BCM63XX-Add-PCIe-register-set-definitions.patch R target/linux/brcm63xx/patches-3.3/317-MIPS-BCM63XX-Add-PCIe-Support-for-BCM6328.patch R target/linux/brcm63xx/patches-3.3/318-MIPS-BCM63XX-expose-the-HS-SPI-clock.patch R target/linux/brcm63xx/patches-3.3/319-board_leds_naming.patch M target/linux/brcm63xx/patches-3.3/401-MIPS-BCM63XX-register-ohci-device.patch M target/linux/brcm63xx/patches-3.3/403-MIPS-BCM63XX-register-ehci-device.patch M target/linux/brcm63xx/patches-3.3/404-bcm963xx_flashmap.patch M target/linux/brcm63xx/patches-3.3/408-6358-enet1-external-mii-clk.patch M target/linux/brcm63xx/patches-3.3/414-bcm63xx_enet-split-dma-registers-access.patch M target/linux/brcm63xx/patches-3.3/415-bcm63xx_enet-add-support-for-bcm6368-internal-ethern.patch M target/linux/brcm63xx/patches-3.3/418-MIPS-BCM63XX-add-HS-SPI-platform-device-and-register.patch M target/linux/brcm63xx/patches-3.3/419-SPI-MIPS-BCM63XX-Add-HS-SPI-driver.patch M target/linux/brcm63xx/patches-3.3/420-MIPS-BCM63XX-Register-SPI-flash-if-present.patch M target/linux/brcm63xx/patches-3.3/421-MIPS-BCM63XX-move-nvram-related-functions-into-their.patch M target/linux/brcm63xx/patches-3.3/425-BCM63XX-allow-providing-fixup-data-in-board-data.patch M target/linux/brcm63xx/patches-3.3/427-MTD-m25p80-allow-passing-pp_data.patch M target/linux/brcm63xx/patches-3.3/428-BCM63XX-add-a-fixup-for-ath9k-devices.patch M target/linux/brcm63xx/patches-3.3/429-MTD-bcm63xxpart-allow-passing-a-caldata-offset.patch M target/linux/brcm63xx/patches-3.3/430-MIPS-BCM63XX-pass-caldata-info-to-flash.patch M target/linux/brcm63xx/patches-3.3/501-board-NB4.patch M target/linux/brcm63xx/patches-3.3/511-board_V2500V.patch M target/linux/brcm63xx/patches-3.3/516-board_96348A-122.patch M target/linux/brcm63xx/patches-3.3/520-bcm63xx-add-support-for-96368MVWG-board.patch M target/linux/generic/patches-3.3/020-ssb_update.patch M target/linux/generic/patches-3.3/025-bcma_backport.patch A target/linux/generic/patches-3.3/048-spi-Dont-call-prepare-unprepare-transfer-if-not-popu.patch M toolchain/Makefile M toolchain/eglibc/Makefile A toolchain/eglibc/common.mk A toolchain/eglibc/headers/Makefile Log Message: ----------- Merge branch 'master' of /home/cero1/src/openwrt Commit: c9906b31cdd0f503038f069a8b94f6806dd359a8 https://github.com/dtaht/Cerowrt-3.3/commit/c9906b31cdd0f503038f069a8b94f6806dd359a8 Author: florian Date: 2012-07-04 (Wed, 04 Jul 2012) Changed paths: M target/linux/mcs814x/files-3.3/arch/arm/boot/dts/mcs8140.dtsi Log Message: ----------- [mcs814x] add missing interrupts properties to some device nodes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32603 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 59d69bb71fc74349366bb2ffd84c0308b739a2d1 https://github.com/dtaht/Cerowrt-3.3/commit/59d69bb71fc74349366bb2ffd84c0308b739a2d1 Author: Dave Taht Date: 2012-07-04 (Wed, 04 Jul 2012) Changed paths: M target/linux/mcs814x/files-3.3/arch/arm/boot/dts/mcs8140.dtsi Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: 671f0e3971af2ca81187d35eb4801bb09a3d1199 https://github.com/dtaht/Cerowrt-3.3/commit/671f0e3971af2ca81187d35eb4801bb09a3d1199 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/generic/files/drivers/net/phy/ar8216.c Log Message: ----------- generic: ar8216: start aneg on each PHY of the AR8327 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32604 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 97e6f608061bd694cce833a1e892097efc8d3160 https://github.com/dtaht/Cerowrt-3.3/commit/97e6f608061bd694cce833a1e892097efc8d3160 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: A target/linux/ar71xx/patches-3.3/140-MIPS-pci-ar724x-avoid-data-bus-error-due-to-a-missin.patch A target/linux/ar71xx/patches-3.3/141-MIPS-pci-ar724x-use-correct-value-for-AR724X_PCI_MEM.patch A target/linux/ar71xx/patches-3.3/142-MIPS-pci-ar71xx-fix-AR71XX_PCI_MEM_SIZE.patch A target/linux/ar71xx/patches-3.3/143-MIPS-pci-ar724x-convert-to-a-platform-driver.patch A target/linux/ar71xx/patches-3.3/144-MIPS-pci-ar71xx-convert-to-a-platform-driver.patch A target/linux/ar71xx/patches-3.3/145-MIPS-ath79-move-global-PCI-defines-into-a-common-hea.patch A target/linux/ar71xx/patches-3.3/146-MIPS-ath79-register-platform-devices-for-the-PCI-con.patch A target/linux/ar71xx/patches-3.3/147-MIPS-ath79-remove-unused-ar7-1x-24-x_pcibios_init-fu.patch A target/linux/ar71xx/patches-3.3/148-MIPS-avoid-possible-resource-conflict-in-register_pc.patch A target/linux/ar71xx/patches-3.3/149-MIPS-pci-ar724x-use-dynamically-allocated-PCI-contro.patch A target/linux/ar71xx/patches-3.3/150-MIPS-pci-ar724x-remove-static-PCI-resources.patch A target/linux/ar71xx/patches-3.3/151-MIPS-pci-ar724x-use-per-controller-IRQ-base.patch A target/linux/ar71xx/patches-3.3/152-MIPS-pci-ar724x-setup-command-register-of-the-PCI-co.patch A target/linux/ar71xx/patches-3.3/153-MIPS-pci-ar71xx-use-dynamically-allocated-PCI-contro.patch A target/linux/ar71xx/patches-3.3/154-MIPS-pci-ar71xx-remove-static-PCI-controller-resourc.patch M target/linux/ar71xx/patches-3.3/601-MIPS-ath79-add-more-register-defines.patch M target/linux/ar71xx/patches-3.3/620-MIPS-ath79-OTP-support.patch Log Message: ----------- ar71xx: refactor PCI code to allow registering multiple PCI controllers git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32605 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 74d33b7b96f13570071c15c40f893665f3bcebb2 https://github.com/dtaht/Cerowrt-3.3/commit/74d33b7b96f13570071c15c40f893665f3bcebb2 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c A target/linux/ar71xx/patches-3.3/160-MIPS-ath79-add-early-printk-support-for-the-QCA955X-.patch A target/linux/ar71xx/patches-3.3/161-MIPS-ath79-add-SoC-detection-code-for-the-QCA9558-So.patch A target/linux/ar71xx/patches-3.3/162-MIPS-ath79-add-clock-setup-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/163-MIPS-ath79-add-IRQ-handling-code-for-the-QCA955X-SoC.patch A target/linux/ar71xx/patches-3.3/164-MIPS-ath79-add-GPIO-setup-code-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/165-MIPS-ath79-add-QCA955X-specific-glue-to-ath79_device.patch A target/linux/ar71xx/patches-3.3/166-MIPS-ath79-register-UART-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/167-MIPS-ath79-add-USB-controller-registration-code-for-.patch A target/linux/ar71xx/patches-3.3/168-MIPS-ath79-add-WMAC-registration-code-for-the-QCA955.patch A target/linux/ar71xx/patches-3.3/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch A target/linux/ar71xx/patches-3.3/170-MIPS-ath79-add-PCI-controller-registration-code-for-.patch M target/linux/ar71xx/patches-3.3/501-MIPS-ath79-add-mac-argument-to-ath79_register_wmac.patch M target/linux/ar71xx/patches-3.3/502-MIPS-ath79-export-ath79_gpio_base.patch M target/linux/ar71xx/patches-3.3/503-MIPS-ath79-add-flash-acquire-release.patch M target/linux/ar71xx/patches-3.3/504-MIPS-ath79-add-ath79_device_reset_get.patch M target/linux/ar71xx/patches-3.3/509-MIPS-ath79-process-board-kernel-option.patch M target/linux/ar71xx/patches-3.3/511-MIPS-ath79-add-ath79_set_usb_power_gpio.patch M target/linux/ar71xx/patches-3.3/521-MIPS-ath79-enable-UART-for-early_serial.patch M target/linux/ar71xx/patches-3.3/601-MIPS-ath79-add-more-register-defines.patch M target/linux/ar71xx/patches-3.3/602-MIPS-ath79-add-openwrt-stuff.patch M target/linux/ar71xx/patches-3.3/610-MIPS-ath79-openwrt-machines.patch M target/linux/ar71xx/patches-3.3/620-MIPS-ath79-OTP-support.patch Log Message: ----------- ar71xx: add initial support for the QCA955X SoCs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32606 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: ee6173e7dca7be8fa8589f233d1c6b96f370b765 https://github.com/dtaht/Cerowrt-3.3/commit/ee6173e7dca7be8fa8589f233d1c6b96f370b765 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/ar71xx/config-3.3 A target/linux/ar71xx/patches-3.3/171-MIPS-ath79-add-support-for-the-Qualcomm-Atheros-AP13.patch M target/linux/ar71xx/patches-3.3/200-spi-ath79-add-delay-between-SCK-changes.patch M target/linux/ar71xx/patches-3.3/201-spi-ath79-add-missing-HIGH-LOW-SCK-transition.patch M target/linux/ar71xx/patches-3.3/202-spi-ath79-remove-superfluous-chip-select-code.patch M target/linux/ar71xx/patches-3.3/203-spi-ath79-use-gpio_request_one.patch M target/linux/ar71xx/patches-3.3/204-spi-ath79-avoid-multiple-initialization-of-the-SPI-c.patch M target/linux/ar71xx/patches-3.3/205-spi-ath79-add-shutdown-handler.patch M target/linux/ar71xx/patches-3.3/206-spi-ath79-make-chipselect-logic-more-flexible.patch M target/linux/ar71xx/patches-3.3/602-MIPS-ath79-add-openwrt-stuff.patch M target/linux/ar71xx/patches-3.3/603-MIPS-ath79-ap121-fixes.patch M target/linux/ar71xx/patches-3.3/604-MIPS-ath79-ap81-fixes.patch M target/linux/ar71xx/patches-3.3/605-MIPS-ath79-db120-fixes.patch M target/linux/ar71xx/patches-3.3/606-MIPS-ath79-pb44-fixes.patch M target/linux/ar71xx/patches-3.3/607-MIPS-ath79-ubnt-xm-fixes.patch M target/linux/ar71xx/patches-3.3/608-MIPS-ath79-ubnt-xm-add-more-boards.patch A target/linux/ar71xx/patches-3.3/609-MIPS-ath79-ap136-fixes.patch M target/linux/ar71xx/patches-3.3/610-MIPS-ath79-openwrt-machines.patch M target/linux/ar71xx/patches-3.3/615-MIPS-ath79-WR1041N-support.patch M target/linux/ar71xx/patches-3.3/616-MIPS-ath79-EW_Dorin-support.patch M target/linux/ar71xx/patches-3.3/617-MIPS-ath79-TL-WDR4300-support.patch Log Message: ----------- ar71xx: add initial support for the Qualcomm Atheros AP136 board git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32607 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: e03def9379bc4b93ac8f79bf8c004f7312ae8035 https://github.com/dtaht/Cerowrt-3.3/commit/e03def9379bc4b93ac8f79bf8c004f7312ae8035 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/ar71xx/base-files/etc/diag.sh M target/linux/ar71xx/base-files/etc/uci-defaults/network M target/linux/ar71xx/base-files/lib/ar71xx.sh M target/linux/ar71xx/base-files/lib/upgrade/platform.sh Log Message: ----------- ar71xx: AP136 user-space support git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32608 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: dd71ce4e82d7217058548aa1d0069cc42b80fdaf https://github.com/dtaht/Cerowrt-3.3/commit/dd71ce4e82d7217058548aa1d0069cc42b80fdaf Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/ar71xx/generic/profiles/atheros.mk M target/linux/ar71xx/image/Makefile Log Message: ----------- ar71xx: add profile and build image for the Atheros AP136 reference board git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32609 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 38f3dd88256281c01be63f2fe5dd8ad82cd190f0 https://github.com/dtaht/Cerowrt-3.3/commit/38f3dd88256281c01be63f2fe5dd8ad82cd190f0 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M package/om-watchdog/files/om-watchdog.init Log Message: ----------- package/om-watchdog: add om2p-lc support Patch-by: Marek Linder git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32610 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 0d85e0278f32799aaa6ee2b545842fbfde79bcf6 https://github.com/dtaht/Cerowrt-3.3/commit/0d85e0278f32799aaa6ee2b545842fbfde79bcf6 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/ar71xx/base-files/etc/diag.sh M target/linux/ar71xx/base-files/etc/uci-defaults/leds M target/linux/ar71xx/base-files/lib/ar71xx.sh M target/linux/ar71xx/files/arch/mips/ath79/mach-om2p.c M target/linux/ar71xx/generic/profiles/openmesh.mk M target/linux/ar71xx/patches-3.3/610-MIPS-ath79-openwrt-machines.patch Log Message: ----------- ar71xx: add support for the OpenMesh OM2P-LC board Patch-by: Marek Linder git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32611 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 44ab3c07dab118a9dd946973f07523c511972c49 https://github.com/dtaht/Cerowrt-3.3/commit/44ab3c07dab118a9dd946973f07523c511972c49 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M package/uboot-envtools/files/ar71xx Log Message: ----------- uboot-envtools: OM2P partition information Signed-off-by: Marek Lindner git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32612 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 11532f077927e8173304d4d8e9a98776e73bd6c0 https://github.com/dtaht/Cerowrt-3.3/commit/11532f077927e8173304d4d8e9a98776e73bd6c0 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: A target/linux/ar71xx/base-files/lib/upgrade/om2p.sh M target/linux/ar71xx/base-files/lib/upgrade/platform.sh Log Message: ----------- ar71xx: OM2P sysupgrade support Signed-off-by: Marek Lindner git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32613 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: ececad638e28828c9a5d00ab623abf74301ad8aa https://github.com/dtaht/Cerowrt-3.3/commit/ececad638e28828c9a5d00ab623abf74301ad8aa Author: jow Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M package/hostapd/files/wpa_supplicant.sh Log Message: ----------- [package] hostapd: change wpa_supplicant.sh to pass 64 byte hex psk unquoted and remove the undocumented usepasspharse option, this makes it match the logic of the hostapd setup git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32614 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: d91f5a2d1579f99e9d20550f4aa5d474dd15df64 https://github.com/dtaht/Cerowrt-3.3/commit/d91f5a2d1579f99e9d20550f4aa5d474dd15df64 Author: Dave Taht Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M package/hostapd/files/wpa_supplicant.sh M package/om-watchdog/files/om-watchdog.init M package/uboot-envtools/files/ar71xx M target/linux/ar71xx/base-files/etc/diag.sh M target/linux/ar71xx/base-files/etc/uci-defaults/leds M target/linux/ar71xx/base-files/etc/uci-defaults/network M target/linux/ar71xx/base-files/lib/ar71xx.sh A target/linux/ar71xx/base-files/lib/upgrade/om2p.sh M target/linux/ar71xx/base-files/lib/upgrade/platform.sh M target/linux/ar71xx/config-3.3 M target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c M target/linux/ar71xx/files/arch/mips/ath79/mach-om2p.c M target/linux/ar71xx/generic/profiles/atheros.mk M target/linux/ar71xx/generic/profiles/openmesh.mk M target/linux/ar71xx/image/Makefile A target/linux/ar71xx/patches-3.3/140-MIPS-pci-ar724x-avoid-data-bus-error-due-to-a-missin.patch A target/linux/ar71xx/patches-3.3/141-MIPS-pci-ar724x-use-correct-value-for-AR724X_PCI_MEM.patch A target/linux/ar71xx/patches-3.3/142-MIPS-pci-ar71xx-fix-AR71XX_PCI_MEM_SIZE.patch A target/linux/ar71xx/patches-3.3/143-MIPS-pci-ar724x-convert-to-a-platform-driver.patch A target/linux/ar71xx/patches-3.3/144-MIPS-pci-ar71xx-convert-to-a-platform-driver.patch A target/linux/ar71xx/patches-3.3/145-MIPS-ath79-move-global-PCI-defines-into-a-common-hea.patch A target/linux/ar71xx/patches-3.3/146-MIPS-ath79-register-platform-devices-for-the-PCI-con.patch A target/linux/ar71xx/patches-3.3/147-MIPS-ath79-remove-unused-ar7-1x-24-x_pcibios_init-fu.patch A target/linux/ar71xx/patches-3.3/148-MIPS-avoid-possible-resource-conflict-in-register_pc.patch A target/linux/ar71xx/patches-3.3/149-MIPS-pci-ar724x-use-dynamically-allocated-PCI-contro.patch A target/linux/ar71xx/patches-3.3/150-MIPS-pci-ar724x-remove-static-PCI-resources.patch A target/linux/ar71xx/patches-3.3/151-MIPS-pci-ar724x-use-per-controller-IRQ-base.patch A target/linux/ar71xx/patches-3.3/152-MIPS-pci-ar724x-setup-command-register-of-the-PCI-co.patch A target/linux/ar71xx/patches-3.3/153-MIPS-pci-ar71xx-use-dynamically-allocated-PCI-contro.patch A target/linux/ar71xx/patches-3.3/154-MIPS-pci-ar71xx-remove-static-PCI-controller-resourc.patch A target/linux/ar71xx/patches-3.3/160-MIPS-ath79-add-early-printk-support-for-the-QCA955X-.patch A target/linux/ar71xx/patches-3.3/161-MIPS-ath79-add-SoC-detection-code-for-the-QCA9558-So.patch A target/linux/ar71xx/patches-3.3/162-MIPS-ath79-add-clock-setup-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/163-MIPS-ath79-add-IRQ-handling-code-for-the-QCA955X-SoC.patch A target/linux/ar71xx/patches-3.3/164-MIPS-ath79-add-GPIO-setup-code-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/165-MIPS-ath79-add-QCA955X-specific-glue-to-ath79_device.patch A target/linux/ar71xx/patches-3.3/166-MIPS-ath79-register-UART-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/167-MIPS-ath79-add-USB-controller-registration-code-for-.patch A target/linux/ar71xx/patches-3.3/168-MIPS-ath79-add-WMAC-registration-code-for-the-QCA955.patch A target/linux/ar71xx/patches-3.3/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch A target/linux/ar71xx/patches-3.3/170-MIPS-ath79-add-PCI-controller-registration-code-for-.patch A target/linux/ar71xx/patches-3.3/171-MIPS-ath79-add-support-for-the-Qualcomm-Atheros-AP13.patch M target/linux/ar71xx/patches-3.3/200-spi-ath79-add-delay-between-SCK-changes.patch M target/linux/ar71xx/patches-3.3/201-spi-ath79-add-missing-HIGH-LOW-SCK-transition.patch M target/linux/ar71xx/patches-3.3/202-spi-ath79-remove-superfluous-chip-select-code.patch M target/linux/ar71xx/patches-3.3/203-spi-ath79-use-gpio_request_one.patch M target/linux/ar71xx/patches-3.3/204-spi-ath79-avoid-multiple-initialization-of-the-SPI-c.patch M target/linux/ar71xx/patches-3.3/205-spi-ath79-add-shutdown-handler.patch M target/linux/ar71xx/patches-3.3/206-spi-ath79-make-chipselect-logic-more-flexible.patch M target/linux/ar71xx/patches-3.3/501-MIPS-ath79-add-mac-argument-to-ath79_register_wmac.patch M target/linux/ar71xx/patches-3.3/502-MIPS-ath79-export-ath79_gpio_base.patch M target/linux/ar71xx/patches-3.3/503-MIPS-ath79-add-flash-acquire-release.patch M target/linux/ar71xx/patches-3.3/504-MIPS-ath79-add-ath79_device_reset_get.patch M target/linux/ar71xx/patches-3.3/509-MIPS-ath79-process-board-kernel-option.patch M target/linux/ar71xx/patches-3.3/511-MIPS-ath79-add-ath79_set_usb_power_gpio.patch M target/linux/ar71xx/patches-3.3/521-MIPS-ath79-enable-UART-for-early_serial.patch M target/linux/ar71xx/patches-3.3/601-MIPS-ath79-add-more-register-defines.patch M target/linux/ar71xx/patches-3.3/602-MIPS-ath79-add-openwrt-stuff.patch M target/linux/ar71xx/patches-3.3/603-MIPS-ath79-ap121-fixes.patch M target/linux/ar71xx/patches-3.3/604-MIPS-ath79-ap81-fixes.patch M target/linux/ar71xx/patches-3.3/605-MIPS-ath79-db120-fixes.patch M target/linux/ar71xx/patches-3.3/606-MIPS-ath79-pb44-fixes.patch M target/linux/ar71xx/patches-3.3/607-MIPS-ath79-ubnt-xm-fixes.patch M target/linux/ar71xx/patches-3.3/608-MIPS-ath79-ubnt-xm-add-more-boards.patch A target/linux/ar71xx/patches-3.3/609-MIPS-ath79-ap136-fixes.patch M target/linux/ar71xx/patches-3.3/610-MIPS-ath79-openwrt-machines.patch M target/linux/ar71xx/patches-3.3/615-MIPS-ath79-WR1041N-support.patch M target/linux/ar71xx/patches-3.3/616-MIPS-ath79-EW_Dorin-support.patch M target/linux/ar71xx/patches-3.3/617-MIPS-ath79-TL-WDR4300-support.patch M target/linux/ar71xx/patches-3.3/620-MIPS-ath79-OTP-support.patch M target/linux/generic/files/drivers/net/phy/ar8216.c Log Message: ----------- Merge branch 'master' of git://nbd.name/openwrt Commit: ba19c86aca9375b5de915bdae1ec5746a6811940 https://github.com/dtaht/Cerowrt-3.3/commit/ba19c86aca9375b5de915bdae1ec5746a6811940 Author: Dave Taht Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M package/hostapd/files/wpa_supplicant.sh M package/om-watchdog/files/om-watchdog.init M package/uboot-envtools/files/ar71xx M target/linux/ar71xx/base-files/etc/diag.sh M target/linux/ar71xx/base-files/etc/uci-defaults/leds M target/linux/ar71xx/base-files/etc/uci-defaults/network M target/linux/ar71xx/base-files/lib/ar71xx.sh A target/linux/ar71xx/base-files/lib/upgrade/om2p.sh M target/linux/ar71xx/base-files/lib/upgrade/platform.sh M target/linux/ar71xx/config-3.3 M target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c M target/linux/ar71xx/files/arch/mips/ath79/mach-om2p.c M target/linux/ar71xx/generic/profiles/atheros.mk M target/linux/ar71xx/generic/profiles/openmesh.mk M target/linux/ar71xx/image/Makefile A target/linux/ar71xx/patches-3.3/140-MIPS-pci-ar724x-avoid-data-bus-error-due-to-a-missin.patch A target/linux/ar71xx/patches-3.3/141-MIPS-pci-ar724x-use-correct-value-for-AR724X_PCI_MEM.patch A target/linux/ar71xx/patches-3.3/142-MIPS-pci-ar71xx-fix-AR71XX_PCI_MEM_SIZE.patch A target/linux/ar71xx/patches-3.3/143-MIPS-pci-ar724x-convert-to-a-platform-driver.patch A target/linux/ar71xx/patches-3.3/144-MIPS-pci-ar71xx-convert-to-a-platform-driver.patch A target/linux/ar71xx/patches-3.3/145-MIPS-ath79-move-global-PCI-defines-into-a-common-hea.patch A target/linux/ar71xx/patches-3.3/146-MIPS-ath79-register-platform-devices-for-the-PCI-con.patch A target/linux/ar71xx/patches-3.3/147-MIPS-ath79-remove-unused-ar7-1x-24-x_pcibios_init-fu.patch A target/linux/ar71xx/patches-3.3/148-MIPS-avoid-possible-resource-conflict-in-register_pc.patch A target/linux/ar71xx/patches-3.3/149-MIPS-pci-ar724x-use-dynamically-allocated-PCI-contro.patch A target/linux/ar71xx/patches-3.3/150-MIPS-pci-ar724x-remove-static-PCI-resources.patch A target/linux/ar71xx/patches-3.3/151-MIPS-pci-ar724x-use-per-controller-IRQ-base.patch A target/linux/ar71xx/patches-3.3/152-MIPS-pci-ar724x-setup-command-register-of-the-PCI-co.patch A target/linux/ar71xx/patches-3.3/153-MIPS-pci-ar71xx-use-dynamically-allocated-PCI-contro.patch A target/linux/ar71xx/patches-3.3/154-MIPS-pci-ar71xx-remove-static-PCI-controller-resourc.patch A target/linux/ar71xx/patches-3.3/160-MIPS-ath79-add-early-printk-support-for-the-QCA955X-.patch A target/linux/ar71xx/patches-3.3/161-MIPS-ath79-add-SoC-detection-code-for-the-QCA9558-So.patch A target/linux/ar71xx/patches-3.3/162-MIPS-ath79-add-clock-setup-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/163-MIPS-ath79-add-IRQ-handling-code-for-the-QCA955X-SoC.patch A target/linux/ar71xx/patches-3.3/164-MIPS-ath79-add-GPIO-setup-code-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/165-MIPS-ath79-add-QCA955X-specific-glue-to-ath79_device.patch A target/linux/ar71xx/patches-3.3/166-MIPS-ath79-register-UART-for-the-QCA955X-SoCs.patch A target/linux/ar71xx/patches-3.3/167-MIPS-ath79-add-USB-controller-registration-code-for-.patch A target/linux/ar71xx/patches-3.3/168-MIPS-ath79-add-WMAC-registration-code-for-the-QCA955.patch A target/linux/ar71xx/patches-3.3/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch A target/linux/ar71xx/patches-3.3/170-MIPS-ath79-add-PCI-controller-registration-code-for-.patch A target/linux/ar71xx/patches-3.3/171-MIPS-ath79-add-support-for-the-Qualcomm-Atheros-AP13.patch M target/linux/ar71xx/patches-3.3/200-spi-ath79-add-delay-between-SCK-changes.patch M target/linux/ar71xx/patches-3.3/201-spi-ath79-add-missing-HIGH-LOW-SCK-transition.patch M target/linux/ar71xx/patches-3.3/202-spi-ath79-remove-superfluous-chip-select-code.patch M target/linux/ar71xx/patches-3.3/203-spi-ath79-use-gpio_request_one.patch M target/linux/ar71xx/patches-3.3/204-spi-ath79-avoid-multiple-initialization-of-the-SPI-c.patch M target/linux/ar71xx/patches-3.3/205-spi-ath79-add-shutdown-handler.patch M target/linux/ar71xx/patches-3.3/206-spi-ath79-make-chipselect-logic-more-flexible.patch M target/linux/ar71xx/patches-3.3/501-MIPS-ath79-add-mac-argument-to-ath79_register_wmac.patch M target/linux/ar71xx/patches-3.3/502-MIPS-ath79-export-ath79_gpio_base.patch M target/linux/ar71xx/patches-3.3/503-MIPS-ath79-add-flash-acquire-release.patch M target/linux/ar71xx/patches-3.3/504-MIPS-ath79-add-ath79_device_reset_get.patch M target/linux/ar71xx/patches-3.3/509-MIPS-ath79-process-board-kernel-option.patch M target/linux/ar71xx/patches-3.3/511-MIPS-ath79-add-ath79_set_usb_power_gpio.patch M target/linux/ar71xx/patches-3.3/521-MIPS-ath79-enable-UART-for-early_serial.patch M target/linux/ar71xx/patches-3.3/601-MIPS-ath79-add-more-register-defines.patch M target/linux/ar71xx/patches-3.3/602-MIPS-ath79-add-openwrt-stuff.patch M target/linux/ar71xx/patches-3.3/603-MIPS-ath79-ap121-fixes.patch M target/linux/ar71xx/patches-3.3/604-MIPS-ath79-ap81-fixes.patch M target/linux/ar71xx/patches-3.3/605-MIPS-ath79-db120-fixes.patch M target/linux/ar71xx/patches-3.3/606-MIPS-ath79-pb44-fixes.patch M target/linux/ar71xx/patches-3.3/607-MIPS-ath79-ubnt-xm-fixes.patch M target/linux/ar71xx/patches-3.3/608-MIPS-ath79-ubnt-xm-add-more-boards.patch A target/linux/ar71xx/patches-3.3/609-MIPS-ath79-ap136-fixes.patch M target/linux/ar71xx/patches-3.3/610-MIPS-ath79-openwrt-machines.patch M target/linux/ar71xx/patches-3.3/615-MIPS-ath79-WR1041N-support.patch M target/linux/ar71xx/patches-3.3/616-MIPS-ath79-EW_Dorin-support.patch M target/linux/ar71xx/patches-3.3/617-MIPS-ath79-TL-WDR4300-support.patch M target/linux/ar71xx/patches-3.3/620-MIPS-ath79-OTP-support.patch M target/linux/generic/files/drivers/net/phy/ar8216.c M target/linux/mcs814x/files-3.3/arch/arm/boot/dts/mcs8140.dtsi Log Message: ----------- Merge branch 'master' of /home/cero1/src/openwrt Commit: fd349e4b0c1d0433b22d9a2c535adc9a789865b2 https://github.com/dtaht/Cerowrt-3.3/commit/fd349e4b0c1d0433b22d9a2c535adc9a789865b2 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c Log Message: ----------- ar71xx: make 2.4GHz wlan LED work on the WR2543N Because ath9k does not supports separate LEDs for different bands yet, the 2.4GHz LED will show the activity, even if the 5GHz band is selected. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32615 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 72923143d493fd680ded58a7e5034b83eeb6bbc0 https://github.com/dtaht/Cerowrt-3.3/commit/72923143d493fd680ded58a7e5034b83eeb6bbc0 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M tools/firmware-utils/src/mktplinkfw.c Log Message: ----------- firmware-utils/mktplinkfw: allow to specify firmware version git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32616 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: cc8ef03faa74232e9221c7f520dbcbcf34cf3986 https://github.com/dtaht/Cerowrt-3.3/commit/cc8ef03faa74232e9221c7f520dbcbcf34cf3986 Author: juhosg Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M target/linux/ar71xx/image/Makefile Log Message: ----------- ar71xx: set firmware version for the TL-WR2543N This ensures that the resulting firmware can be flashed from the latest (v3.13.17) offical firmware. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32617 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 8a9ae5025c918dd55f76290864e843d1f9ba9975 https://github.com/dtaht/Cerowrt-3.3/commit/8a9ae5025c918dd55f76290864e843d1f9ba9975 Author: jow Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: A dropbear/patches/500-set-default-path.patch Log Message: ----------- dropbear: set DEFAULT_PATH for non-interactive logins Set PATH in non-interactive logins to include /sbin paths, so to be consistent with what is currently set in /etc/profile for interactive shells. Signed-off-by: Gui Iribarren git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32618 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 04bca371c4703ef977e3e088099208d0f624ae08 https://github.com/dtaht/Cerowrt-3.3/commit/04bca371c4703ef977e3e088099208d0f624ae08 Author: jow Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: R dropbear/patches/500-set-default-path.patch Log Message: ----------- Revert "dropbear: set DEFAULT_PATH for non-interactive logins" This reverts commit 9927e7918211a22ba5871cbccdcb3764d3872f91. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32619 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: e465d4c76385d6d181ffb61b071cc76856d48bb2 https://github.com/dtaht/Cerowrt-3.3/commit/e465d4c76385d6d181ffb61b071cc76856d48bb2 Author: jow Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: A package/dropbear/patches/500-set-default-path.patch Log Message: ----------- dropbear: set DEFAULT_PATH for non-interactive logins Set PATH in non-interactive logins to include /sbin paths, so to be consistent with what is currently set in /etc/profile for interactive shells. [jow: reapply with current patch level, fix inner patch, refresh] Signed-off-by: Gui Iribarren git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32620 3c298f89-4303-0410-b956-a3cf2f4a3e73 Commit: 119481db57bfd6f23271b58c226c3ec2a0e572b2 https://github.com/dtaht/Cerowrt-3.3/commit/119481db57bfd6f23271b58c226c3ec2a0e572b2 Author: jow Date: 2012-07-05 (Thu, 05 Jul 2012) Changed paths: M package/dnsmasq/files/dnsmasq.init Log Message: ----------- Add local TTL option to dnsmasq -T, --local-ttl=