Re: [OpenWrt-Devel] /etc/board.json

2018-06-26 Thread Mathias Kresin
2018-06-26 12:54 GMT+02:00 Levente : > Isn't this script uses this file and generate configuration files? > > BTW, I've found that in file > > target/linux/ramips/base-files/etc/board.d/02_network > > The order of ports is funny. > > I'd apply this patch. > > From 8e8eaad9b24da7919de640cbc5e7a04eb0

Re: [OpenWrt-Devel] [PATCH] ath79: Add support for TL-WR740N/NDv2, TL-MR3220v1, TL-MR3420v1

2018-06-26 Thread Mathias Kresin
Hey Dmitry, find my comments inline. Please take care to fix the outlined issues for all dts. 2018-06-26 16:47 GMT+02:00 Смирнов Дмитрий : > > From dfcb42807ddd384482ea0dc18d42a8e4774b709e Mon Sep 17 00:00:00 2001 > From: Deoptim Please use your full name here. > Date: Tue, 26 Jun 2018 17:01:4

Re: [OpenWrt-Devel] [PATCH] ath79: port TP-Link TL-WR741ND v4 and TL-WR740ND v4

2018-06-26 Thread Mathias Kresin
Hey Rocco, find my (minor) comments inline. 2018-06-26 17:58 GMT+02:00 Rocco Folino : > This patch ports the TP-Link TL-WR741ND v4 and TL-WR740ND v4 to the > ath79 target. > > Because the two devices share the same hw layout, this patch adds a common > .dtsi which is included by the two .dts. > >

Re: [OpenWrt-Devel] [PATCH] ath79: add support for TP-Link RE450 v2

2018-06-28 Thread Mathias Kresin
Thanks a lot for the patch. Due to today's changes you most likely need to rebase your patch. Find more comments inline. Mathias 2018-06-28 19:30 GMT+02:00 Peter Lundkvist : TP-Link RE450 v2 is a dual band router/range-extender based on Qualcomm/Atheros QCA9563 + QCA9880. Specification: -

Re: [OpenWrt-Devel] [RFC] at91: do not check kernel size

2018-07-08 Thread Mathias Kresin
08.07.2018 11:37, Hauke Mehrtens: The at91/legacy build in build bot is failing since some months now because it can not create openwrt-at91-legacy-at91-q5xr5-squashfs- factory.bin. See http://phase1.builds.lede-project.org/builders/at91%2Flegacy This is caused by this warning: WARNING: Image fil

Re: [OpenWrt-Devel] [PATCH 1/2] ramips: TP-Link TL-WR902AC v3: don't build factory image

2018-07-09 Thread Mathias Kresin
2018-07-09 12:54 GMT+02:00 Peter Lundkvist : > The factory image is not usable and may brick the device. > > Signed-off-by: Peter Lundkvist > --- > target/linux/ramips/image/mt76x8.mk | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/target/linux/ramips/image/mt76x8.mk > b/target/linux/ram

[OpenWrt-Devel] [PATCH] kernel: optimized for size if small_flash feature is set

2018-07-09 Thread Mathias Kresin
ole target - mediatek, ramips/mt7620 & ramips/mt76x8 where boards should have plenty of space and an optimization for size doesn't make much sense - rb532, which has 128MByte flash Signed-off-by: Mathias Kresin --- config/Config-kernel.in | 22 ++ t

Re: [OpenWrt-Devel] [PATCH] mtd: skip bad blocks when writing

2018-07-12 Thread Mathias Kresin
18.05.2018 17:25, Lev: No empty commit message please. Explain what you are doing and why you are doing it. If necessary, explain why you are doing it this way. Can anything else than NAND flash have bad blocks? If no, are we still using jffs2 on top of NAND anywhere. --- package/system/

[OpenWrt-Devel] [PATCH] metadata: express conflicts in a single line

2018-07-12 Thread Mathias Kresin
p; pkg-variant-b) Express conflicts in a single line by using the logical AND operator to fix the visual glitch. Signed-off-by: Mathias Kresin --- scripts/package-metadata.pl | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/scripts/package-metadata.pl b/scripts

[OpenWrt-Devel] [PATCH 1/2] hostapd: cleanup package definition

2018-07-12 Thread Mathias Kresin
. No need to maintain both variables. Signed-off-by: Mathias Kresin --- package/network/services/hostapd/Makefile | 88 --- 1 file changed, 45 insertions(+), 43 deletions(-) diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd

[OpenWrt-Devel] [PATCH 2/2] hostapd: fix conflicts hell

2018-07-12 Thread Mathias Kresin
without introducing recursive dependencies. Signed-off-by: Mathias Kresin --- package/network/services/hostapd/Makefile | 142 ++ 1 file changed, 47 insertions(+), 95 deletions(-) diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd

Re: [OpenWrt-Devel] [PATCH] metadata: express conflicts in a single line

2018-07-14 Thread Mathias Kresin
12.07.2018 19:33, Mathias Kresin: Due to the use of dependencies to express conflicts, a package which conflicts with multiple other packages (variants) is indented one level for each conflict: < > pkg-variant-a < > pkg-variant-b (conflicts pkg-variant-a) < > pkg-varian

[OpenWrt-Devel] [PATCH 3/3] kernel: don't auto attach ubi on read error

2018-07-19 Thread Mathias Kresin
to me the cleaner way, as it would allow to spot hidden/workaround issues. Signed-off-by: Mathias Kresin --- ...auto-attach-mtd-device-named-ubi-or-data-on-boot.patch | 15 ++- ...auto-attach-mtd-device-named-ubi-or-data-on-boot.patch | 15 ++- 2 files changed, 20 inserti

[OpenWrt-Devel] [PATCH 1/3] kernel: improve ubi auto attach code readability

2018-07-19 Thread Mathias Kresin
flash was successful. Signed-off-by: Mathias Kresin --- ...tach-mtd-device-named-ubi-or-data-on-boot.patch | 54 -- ...tach-mtd-device-named-ubi-or-data-on-boot.patch | 54 -- 2 files changed, 58 insertions(+), 50 deletions(-) diff --git a/target/linux

[OpenWrt-Devel] [PATCH 2/3] kernel: handle bad blocks in ubi auto attach code

2018-07-19 Thread Mathias Kresin
ff-by: Mathias Kresin --- ...tach-mtd-device-named-ubi-or-data-on-boot.patch | 22 ++ ...tach-mtd-device-named-ubi-or-data-on-boot.patch | 22 ++ 2 files changed, 36 insertions(+), 8 deletions(-) diff --git a/target/linux/generic/pending-4.14/490-ubi-auto-attac

Re: [OpenWrt-Devel] [PATCH 1/1] ramips: remove RB750GR3 support

2018-07-19 Thread Mathias Kresin
2018-07-19 19:26 GMT+02:00 Thibaut VARÈNE : > faf94d926e2810f895f2a98d4a49ee2fe8f673e8 added "support" for a hacked > device where the original boot loader (routerboot) has been replaced > by u-boot. > > Support for this device with stock bootloader is possible (as evidenced > by support for the RB

Re: [OpenWrt-Devel] [PATCH 1/2] ramips: fix RBM33G name and partitioning

2018-07-19 Thread Mathias Kresin
2018-07-19 19:12 GMT+02:00 Thibaut VARÈNE : > This patch improves 5684d087418d176cfdef4e045e1950ca7ba3b09f by setting > the correct partition scheme for the RouterBoot section of the flash. > > This section is subdivided in several segments, as they are on ar71xx > RB devices, albeit with different

Re: [OpenWrt-Devel] [PATCH 2/2] ramips: fix RBM11G name and partitioning

2018-07-19 Thread Mathias Kresin
2018-07-19 19:12 GMT+02:00 Thibaut VARÈNE : > This patch improves faf64056ddd46992a75b1e277d94541c7251035c by setting > the correct partition scheme for the RouterBoot section of the flash. > > This section is subdivided in several segments, as they are on ar71xx > RB devices, albeit with different

Re: [OpenWrt-Devel] hostapd fails to compile

2018-07-20 Thread Mathias Kresin
2018-07-20 10:03 GMT+02:00 e9hack : > Hello, > > after this commit: > > commit 3838b16943c6021e3ff06d5733df890408ad7158 > hostapd: fix conflicts hell > > hostapd fails to compile with this error message: > > ccp: > '/home/xyz/src/openwrt/LEDE/carambola/staging_dir/target-mipsel_24kc_musl/pkginfo/

Re: [OpenWrt-Devel] ar71xx: add support for UniFi-AC-Mesh-Pro

2018-07-20 Thread Mathias Kresin
2018-07-18 19:04 GMT+02:00 Matthias Schiffer : > On 07/07/2018 10:34 PM, Christoph Krapp wrote: >> Hi, >> >> i'm writing to the mailing list because mkresin closed my github pr[1] >> and pointed me here. >> The PR adds model detection for Ubiquity UniFi-AC-Mesh-Pro to the >> ar71xx target. The sour

Re: [OpenWrt-Devel] [PATCH 1/3] kernel: improve ubi auto attach code readability

2018-07-20 Thread Mathias Kresin
2018-07-20 11:39 GMT+02:00 Felix Fietkau : > On 2018-07-19 19:05, Mathias Kresin wrote: >> The early return on failed open of the mtd device allows to get rid of >> one level of indentation. >> >> Move the put_mtd_device() called on multiple error conditions to a goto &

Re: [OpenWrt-Devel] trac/rss-feed has changed?

2014-07-17 Thread Mathias Kresin
2014-07-16 20:51 GMT+02:00 Bastian Bittorf : > my feedreader was used to fetch > https://dev.openwrt.org/log/trunk?limit=100&mode=stop_on_copy&format=rss > > but this stopped working around 13. july 13:00 > why? what should i use now? > > bastian Hi Bastian, i'm using the rss feed from gitweb htt

[OpenWrt-Devel] [PATCH 1/2] base-files: add network_get_ipaddrs_all()

2014-10-06 Thread Mathias Kresin
Return all IPv4 and IPv6 addresses. Signed-off-by: Mathias Kresin --- package/base-files/files/lib/functions/network.sh | 23 +++ 1 file changed, 23 insertions(+) diff --git a/package/base-files/files/lib/functions/network.sh b/package/base-files/files/lib/functions

[OpenWrt-Devel] [PATCH 2/2] dropbear: ensure the interface has an ip-address

2014-10-06 Thread Mathias Kresin
Use network_get_ipaddrs_all to get all ip-addresses of an interface. If the function fails, the interface does not exists or has not any suiteable ip addresses assigned. Use the returned ip-address(es) to construct the dropbear listen address. Signed-off-by: Mathias Kresin --- .../network

[OpenWrt-Devel] [PATCH 0/2] dropbear: ensure the specified interface exists and has an ip-address

2014-10-06 Thread Mathias Kresin
If dropbear is configured to listen on a logic interface which does not (yet) results in a physical interface when dropbear is (re)started, the init script bind the particular instance to 0.0.0.0. The same happens if the physical interface exists but does not have an ip-address assigned. All fol

Re: [OpenWrt-Devel] [PATCH 1/2] base-files: add network_get_ipaddrs_all()

2014-10-06 Thread Mathias Kresin
Hi Bastian, the short answer for all your questions is: Because all the existing functions in network.sh are written this way. The function I would like to introduce is a dupe of network_get_ipaddrs6() which is a dupe of network_get_ipaddr6(). All three functions only differ by the value which is

Re: [OpenWrt-Devel] AR10 GPHYs (WAS: Re: [lantiq] general help on AR10 platform)

2019-09-04 Thread Mathias Kresin
04/09/2019 12:07, Enrico Mioso: Hi there! So I am trying to get ethernet working on this AR10 device. It has 3 GPHYs:     gphy0: gphy@20 {     compatible = "lantiq,xrx300-gphy";     reg = <0x20 0x4>;     resets = <&reset0 31 30>, <&reset1 7 7>;

Re: [OpenWrt-Devel] Network broken with kernels 5.2+

2019-10-28 Thread Mathias Kresin
28/10/2019 23:01, Rafał Miłecki: Using OpenWrt with kernels 5.2+ results in broken network. Interfaces seem OK but I cannot ping my router anymore. This regression is caused by the upstream commit commit b424e432e770d6dd572765459d5b6a96a19c5286 (refs/bisect/bad) Author: Michal Kubecek Date:

Re: [OpenWrt-Devel] OpenWrt: read label MAC address for FRITZ!WLAN Repeater 300E

2019-11-12 Thread Mathias Kresin
12/11/2019 13:26, Adrian Schmutzler: Hi, I'm currently trying to remove the dependency of label_mac in 02_network from phy setup, i.e. replacing stuff like $(cat /sys/class/ieee80211/phyX/macaddress) with extraction from the proper flash location. One obstacle is the AVM FRITZ!WLAN Repeater 30

Re: [OpenWrt-Devel] [PATCH] ramips: Fix sysupgrade for Xiaomi mir3g

2020-01-06 Thread Mathias Kresin
05/01/2020 15:17, Hauke Mehrtens: Without this change sysupgrade from 18.06 to 19.07 is only possible with the -F option. In OpenWrt 18.06 the nand_do_platform_check() function is called with the board name mir3g only, if the tar does not use mir3g it will fail. OpenWrt 19.07 and later support th

Re: [OpenWrt-Devel] hostapd and Linux bridges

2020-01-21 Thread Mathias Kresin
21/01/2020 20:22, Daniel Golle: On Tue, Jan 21, 2020 at 07:40:42PM +0100, Bjørn Mork wrote: Daniel Golle writes: On proprietary APs it looks like port isolation is enabled or disabled globally in Linux' bridge code using sysctl or other methods, an approach which is unlikely to get accepted i

Re: [OpenWrt-Devel] [PATCH v2] fstools: Add support to read-only MTD partitions (eg. recovery images)

2020-01-21 Thread Mathias Kresin
21/01/2020 22:10, Bruno Pena: Hi everyone, I was finally able to replicate the issue you are observing. The problem comes from the fact that the kernel partition on the TP-Link images is not padded to the write blocksize - which can be observed on the dmesg from Steve: [0.450987] 0x

[PATCH 1/3] kernel: 5.10: fix ar8216 vlans

2021-10-23 Thread Mathias Kresin
ar8216 switches have a hardware bug, which renders normal 802.1q support unusable. Packet mangling is required to fix up the vlan for incoming packets. The patch was ommited at the time kernel 5.10 support was added but is still required for ar8216 switches. Signed-off-by: Mathias Kresin

[PATCH 2/3] kernel: 5.10: packet mangling code only for ar8216 driver

2021-10-23 Thread Mathias Kresin
Only the ar8216 switch driver uses the packet mangling code. Update the kernel configs accordingly. Signed-off-by: Mathias Kresin --- target/linux/ath79/config-5.10 | 1 + .../linux/generic/hack-5.10/700-swconfig_switch_drivers.patch | 2 +- target/linux

[PATCH 3/3] kernel: 5.10: simplify logic in packet mangling patch

2021-10-23 Thread Mathias Kresin
I had quite a hard time to understand what the change to net/core/dev.c is supposed to do. Simplify the change by returning NETDEV_TX_OK in case a eth_mangle_tx callback was set but returned NULL instead of setting the return value in the else branch. Signed-off-by: Mathias Kresin --- .../721

[PATCH] uboot-lantiq: danube: fix hanging lzma kernel uncompression

2021-11-02 Thread Mathias Kresin
oving the pointer to the next int position and accessing accessing just the first byte, let gcc use sll instead of lwr/lwl and prevents the unaligned access. Signed-off-by: Mathias Kresin --- .../0030-lzma-fix-unaligned-access.patch | 32 +++ 1 file changed, 32 inser

[PATCH] uboot-lantiq: danube: fix SPL boot

2021-11-02 Thread Mathias Kresin
faced the issue while trying to shrink the u-boot to 64K since some board only have an u-boot partition of that size from the days ifx-uboot was used. Signed-off-by: Mathias Kresin --- ...0032-MIPS-lantiq-danube-fix-SPL-boot.patch | 33 +++ 1 file changed, 33 insertions(+) c

[PATCH] uboot-lantiq: fix out of bounds cache invalidate

2021-11-02 Thread Mathias Kresin
the BootFile variable is placed more than 0x1000 bytes after the data variable and doesn't get null'ed. Fixes: FS#4113 Signed-off-by: Mathias Kresin --- ...q-fix-out-of-bounds-cache-invalidate.patch | 48 +++ 1 file changed, 48 insertions(+) create mode 100644 package/

Re: [PATCH] uboot-lantiq: danube: fix hanging lzma kernel uncompression

2021-11-02 Thread Mathias Kresin
11/2/21 11:52 PM, Hauke Mehrtens: On 11/2/21 11:35 PM, Mathias Kresin wrote: At least since gcc 7.3.0 (OpenWrt 18.06) lwr/lwl are used in the assembly  of LzmaProps_Decode. The instructions are using unaligned access, which locks up danube boards using memory mapped NOR flash. It isn't

Re: [PATCH] uboot-lantiq: danube: fix hanging lzma kernel uncompression

2021-11-03 Thread Mathias Kresin
11/3/21 2:25 PM, Daniel Schwierzeck: Am Dienstag, dem 02.11.2021 um 23:35 +0100 schrieb Mathias Kresin: At least since gcc 7.3.0 (OpenWrt 18.06) lwr/lwl are used in the assembly of LzmaProps_Decode. The instructions are using unaligned access, which locks up danube boards using memory mapped

[PATCH v2] uboot-lantiq: danube: fix hanging lzma kernel uncompression

2021-11-05 Thread Mathias Kresin
g the read with lwr/lwl instructions. Signed-off-by: Mathias Kresin --- Changes in v2: - add more details to the commit message about what can be observed - mention the affected hardware combination - use readb() to force 8 bit reads .../patches/0030-lzma-force-8bit-reads.patch

Re: [PATCH] uboot-lantiq: fix out of bounds cache invalidate

2021-11-10 Thread Mathias Kresin
11/3/21 2:43 PM, Daniel Schwierzeck: Am Dienstag, dem 02.11.2021 um 23:35 +0100 schrieb Mathias Kresin: If u-boot is compiled with gcc 10+ the relevant part of the memory is used as following: variable BootFile is at address: 0x83ffe4ec variable data is at address: 0x83ffdee2 variable data

Re: [PATCH] FritzBox-4040-UBOOT: Allow for easier devices recovery

2021-11-23 Thread Mathias Kresin
11/23/21 12:20 PM, David Bauer: Hello Enrico, On 11/22/21 11:55, Enrico Mioso wrote: When flashing a broken kernel, or an image where failsafe mode is no more accessible, recoverying these devices can become needlessly painful. Allow for easier recovery by unconditionally trying to get an init

Re: P2812HNUF3

2021-12-10 Thread Mathias Kresin
12/9/21 10:14 PM, Ivar Orskaug: Hi, P2812HNUF3 is currently broken in main because of the kernel 5.10 increase in size. This patch increases the kernel flash partition to 3072k, aligning with P2812HNUF1. Would it be possible to apply it to main? Regards Ivar diff --git a/target/linux/lantiq/fil

Re: AW: [PATCH 0/7] lantiq: initial support for x490 Fritzboxes

2022-02-11 Thread Mathias Kresin
2/11/22 23:39, kestrel1...@t-online.de: Hi, I have created a new PR: https://github.com/openwrt/openwrt/pull/5074 Which also includes a remote processor framework kernel module, which has not been sent upstream yet. But it could be the basis to make wifi or the secondary SoC work too. It stil

Re: [PATCH 0/7] lantiq: initial support for x490 Fritzboxes

2022-02-14 Thread Mathias Kresin
2/14/22 11:06, Torsten Duwe: On Sat, 12 Feb 2022 02:05:17 +0100 Mathias Kresin wrote: 2/11/22 23:39, kestrel1...@t-online.de: I created a DTB and image configuration for Micron and non Micron NAND. This is probably the best way and not supporting just one NAND type per device. Unfortunately

Re: AW: [PATCH 0/7] lantiq: initial support for x490 Fritzboxes

2022-02-15 Thread Mathias Kresin
2/15/22 08:56, kestrel1...@t-online.de: Hi, without specifying any of the options from Torstens commit, with my PR the following is printed during boot: [ 13.493508] pci :02:00.0: xHCI HW not ready after 5 sec (HC bug?) status = 0x801 [ 13.499854] pci :02:00.0: quirk_usb_early_ha

Re: [OpenWrt-Devel] [PATCH] ramips: fix NETGEAR R6260 EEPROM offset

2020-01-28 Thread Mathias Kresin
28/01/2020 22:21, David Bauer: The EEPROM offset for the NETGEAR R6260 is incorrect, thus no valid calibration data is used. Fix this only for the NETGEAR R6260, as it's currently unknown whether or not other boards are affected. Signed-off-by: David Bauer --- target/linux/ramips/dts/mt7621_

Re: [OpenWrt-Devel] Network broken with kernels 5.2+

2020-02-12 Thread Mathias Kresin
Am Mi., 12. Feb. 2020 um 17:38 Uhr schrieb Rafał Miłecki : > > On Tue, 29 Oct 2019 at 07:00, Mathias Kresin wrote: > > 28/10/2019 23:01, Rafał Miłecki: > > > Using OpenWrt with kernels 5.2+ results in broken network. Interfaces > > > seem OK but I cannot ping my ro

[OpenWrt-Devel] [PATCH] iproute2: revert add libcap support, enabled in ip-full

2020-03-05 Thread Mathias Kresin
g the external packages feed up and running, which is a regression to the former behaviour. Signed-off-by: Mathias Kresin --- package/network/utils/iproute2/Makefile | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package/network/utils/iproute2/Makefile b/pa

Re: [OpenWrt-Devel] [PATCH] iproute2: revert add libcap support, enabled in ip-full

2020-03-15 Thread Mathias Kresin
05/03/2020 23:29, Alin Năstac: On Thu, Mar 5, 2020 at 8:34 PM Mathias Kresin wrote: This reverts commit a6da3f9ef746101b84a6f530f5a40de28341b69a. Not exactly a revert, since it keeps HAVE_CAP logic. Sure, I want to make sure that HAVE_CAP is really disabled. The libcap isn't as opt

Re: [OpenWrt-Devel] [PATCH] ramips: mmc: Read mmc-caps from dt with mmc_of_parse

2020-04-27 Thread Mathias Kresin
27/04/2020 10:40, Benedikt-Alexander Mokroß: The original mmc-driver for ramips used hardcoded mmc-caps. This patch removes the hardcoded caps and enables dt parsing with mmc_of_parse. Signed-off-by: Benedikt-Alexander Mokroß ---  .../ramips/files/drivers/mmc/host/mtk-mmc/sd.c  | 13

Re: [OpenWrt-Devel] [PATCH] mvebu: drop WiFi migration script

2020-06-06 Thread Mathias Kresin
03/06/2020 20:42, Adrian Schmutzler: From: DENG Qingfang This migration script is meant for migration between 17.01 and newer releases. Since 17.01 is EOL for quite some time already, let's just drop it. Signed-off-by: DENG Qingfang [extend commit message] Signed-off-by: Adrian Schmutzler

[OpenWrt-Devel] [PATCH] dnsmasq: use interface-name option to add own hostname

2013-05-28 Thread Mathias Kresin
With this patch, the --interface-name option of dnsmasq is used to add a DNS record for the openwrt box. Starting with dnsmasq 2.67test5 it does even work for ipv6 addresses. IPv6 addresses with an expired lifetime will be automatically replaced with a new valid one. Signed-off-by: Mathias Kresin

Re: [OpenWrt-Devel] [PATCH] dnsmasq: use interface-name option to add own hostname

2013-05-28 Thread Mathias Kresin
will be automatically replaced with a new valid one. Signed-off-by: Mathias Kresin --- Index: package/network/services/dnsmasq/files/dnsmasq.init === --- package/network/services/dnsmasq/files/dnsmasq.init (revision 36743) +++ pa

Re: [OpenWrt-Devel] [PATCH] dnsmasq: use interface-name option to add own hostname

2013-05-31 Thread Mathias Kresin
2013/5/31 Jonas Gorski > On Tue, May 28, 2013 at 4:53 PM, Mathias Kresin wrote: > > Updated version of the patch without hardcoded interface. lanaddr isn't > > used anymore so drop it. > > > > Use the --interface-name option of dnsmasq to add a DNS record for th

[OpenWrt-Devel] [PATCH] cmus: fix configure checks against host files

2014-01-23 Thread Mathias Kresin
-by: Mathias Kresin --- diff --git a/sound/cmus/patches/020-check_header_sys_soundcard.patch b/sound/cmus/patches/020-check_header_sys_soundcard.patch new file mode 100644 index 000..74f622e --- /dev/null +++ b/sound/cmus/patches/020-check_header_sys_soundcard.patch @@ -0,0 +1,11 @@ +--- a

[OpenWrt-Devel] [PATCH] shadow: add missing build dependency

2014-01-23 Thread Mathias Kresin
As jow has stated in #12004 correctly, shadows needs a build dependency on libintl (gettext) to provide the missing m4 macros. The missing dependency was spotted while doing a parallel build. This patch closes #12004. Signed-off-by: Mathias Kresin --- diff --git a/utils/shadow/Makefile b

[OpenWrt-Devel] [PATCH] mxml: Update package source URL

2014-01-23 Thread Mathias Kresin
The ftp.easysw.com site has disappeared completely. So switch to the authors personal site. Signed-off-by: Mathias Kresin --- diff --git a/libs/mxml/Makefile b/libs/mxml/Makefile index fdaa504..d3ba357 100644 --- a/libs/mxml/Makefile +++ b/libs/mxml/Makefile @@ -13,7 +13,7 @@ PKG_VERSION:=2.6

[OpenWrt-Devel] [PATCH] cups: Update package source URL

2014-01-23 Thread Mathias Kresin
The ftp.easysw.com site has disappeared completely. This patch adds the official cups site as package source and drops all easysw.com servers and not longer existent mirrors of easys.com. Signed-off-by: Mathias Kresin --- diff --git a/net/cups/Makefile b/net/cups/Makefile index 550d00e

[OpenWrt-Devel] [PATCH] telepathy-python: fix build error by updating to latest upstream version

2014-01-23 Thread Mathias Kresin
ild. [1] https://git.gnome.org/browse/libxslt/commit/xsltproc?id=e669a8c7cefec93ee1bfaf59721aadc42e226d6e The current Ubuntu version already ships xsltproc 1.1.28. Signed-off-by: Mathias Kresin --- diff --git a/lang/telepathy-python/Makefile b/lang/telepathy-python/Makefile index 436ea67..2aa5

Re: [OpenWrt-Devel] [PATCH] [packages] boost: fixed build failure with CONFIG_PKG_BUILD_USE_JOBSERVER=y

2014-01-23 Thread Mathias Kresin
n not use a make jobserver. Since the patch is mangled in patchwork, I send a fixed version inline. Signed-off-by: Szymon Acedański Tested-by: Mathias Kresin --- diff --git a/libs/boost/Makefile b/libs/boost/Makefile index 832fc57..5804231 100644 --- a/libs/boost/Makefile +++ b/libs/boost/Makefil

[OpenWrt-Devel] [PATCH] dnsmasq: allow hostname assignment without static lease

2011-05-19 Thread Mathias Kresin
The attached patch for dnsmasq.init allows to assign a hostname to a particular mac-address. It's useful to override the client supplied hostname, especially if the client does not supply a hostname at all. It corresponds to the following example in dnsmasq.conf.example: # Always set the

[OpenWrt-Devel] [PATCH] tinyproxy: allow to use the bind option

2011-05-19 Thread Mathias Kresin
Attached patch allows to use the 'bind' option even if transparent proxy support is compiled into tinyproxy (which is in openwrt). There are several references related to the bug, but nobody seams to know why this - apparently not needed - check was build in. Regards Mathias https://banu.com/pipe

[OpenWrt-Devel] [PATCH] mark minidlna.conf as config file

2011-07-01 Thread Mathias Kresin
This is a copy of the apparently overlooked ticket 9439 opened by me. Attached patch for the Makefile of the minidlna package, marks /etc/minidlna.conf as config file. Regards Mathias Kresin Index: Makefile === --- Makefile

Re: [OpenWrt-Devel] [PATCH] mark minidlna.conf as config file

2011-07-04 Thread Mathias Kresin
as resolved. > > > > On 01/07/11 23:55, Mathias Kresin wrote: > > This is a copy of the apparently overlooked ticket 9439 opened by me. > > > > Attached patch for the Makefile of the minidlna package, > > marks /etc/minidlna.conf as

<    1   2   3