Commit Graph

4567 Commits

Author SHA1 Message Date
CN_SZTL
fcf53a6b13
Merge Mainline 2020-08-14 21:46:50 +08:00
Ansuel Smith
87e4b03f4c kernel: usb: move phy-qcom-ipq806x-usb to ipq806x modules.mk
This driver is only used by ipq806x SoCs. Move it there and drop
dependency from ipq40xx since it's not used anywere.

Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
[rebase on changes to previous patches]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Tested-by: Paul Blazejowski <paulb@blazebox.homeip.net> [R7800]
2020-08-14 12:08:01 +08:00
Ansuel Smith
f4d6cc039e ipq806x: replace phy dwc3 patch with upstream version
- Replace dwc3 phy patch with upstream version
- Rework the dts to use the upstream bindings
- Update changed config flags
- Rename module to reflect config name

Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
[fix qcom,tx-deamp_3_5db typo, refresh patches, rename kmod]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Tested-by: Paul Blazejowski <paulb@blazebox.homeip.net> [R7800]
2020-08-14 12:06:50 +08:00
AmadeusGhost
fe141dc248 ipq806x: sync upstream source code 2020-08-14 12:00:20 +08:00
Daniel Golle
9280742700 libselinux: fix Makefile style
Also fix line order in libselinux Makefile.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-14 11:33:27 +08:00
Daniel Golle
fbc4012e54 libsepol: fix Makefile style
Fix line ordering (cosmetic).

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-14 11:33:03 +08:00
Daniel Golle
47f1112d6b pcre: clean up Makefile line order
The most recent patch added add lines in one block instead of in the
appropriate places to keep Makefiles in consistent style. Fix that.

Fixes: ff02e1561f ("pcre: add host variant of libpcre")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-14 11:32:23 +08:00
Thomas Petazzoni
88cee4653d pcre: add host variant of libpcre
This is needed to build the host variant of libselinux.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-08-14 11:31:43 +08:00
Hauke Mehrtens
b61721b554
mac80211: Fix build on mpc85xx target
This fixes the following compile error seen on the mpc85xx target:
  CC [M]  /linux-mpc85xx_p2020/backports-5.7-rc3-1/drivers/net/wireless/intersil/orinoco/main.o
In file included from /builder/shared-workdir/build/staging_dir/toolchain-powerpc_8540_gcc-8.4.0_musl/include/stddef.h:17,
                 from /linux-mpc85xx_p2020/backports-5.7-rc3-1/include/uapi/linux/wireless.h:77,
                 from /linux-mpc85xx_p2020/backports-5.7-rc3-1/include/linux/wireless.h:13,
                 from /linux-mpc85xx_p2020/backports-5.7-rc3-1/drivers/net/wireless/intersil/orinoco/main.c:89:
/builder/shared-workdir/build/staging_dir/toolchain-powerpc_8540_gcc-8.4.0_musl/include/bits/alltypes.h:106:15: error: conflicting types for 'ptrdiff_t'
 typedef _Addr ptrdiff_t;
               ^~~~~~~~~
In file included from /linux-mpc85xx_p2020/backports-5.7-rc3-1/backport-include/linux/types.h:4,
                 from ./include/linux/list.h:5,
                 from /linux-mpc85xx_p2020/backports-5.7-rc3-1/backport-include/linux/list.h:3,
                 from ./include/linux/module.h:9,
                 from /linux-mpc85xx_p2020/backports-5.7-rc3-1/backport-include/linux/module.h:3,
                 from /linux-mpc85xx_p2020/backports-5.7-rc3-1/drivers/net/wireless/intersil/orinoco/main.c:79:
./include/linux/types.h:65:28: note: previous declaration of 'ptrdiff_t' was here
 typedef __kernel_ptrdiff_t ptrdiff_t;
                            ^~~~~~~~~
scripts/Makefile.build:265: recipe for target '/linux-mpc85xx_p2020/backports-5.7-rc3-1/drivers/net/wireless/intersil/orinoco/main.o' failed

Fixes: d6b158b869 ("mac80211: Update to 4.19.137-1")
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 04b1a11f5c)
2020-08-14 03:15:28 +08:00
CN_SZTL
b37fafcb78
Merge Mainline 2020-08-14 02:30:28 +08:00
Felix Fietkau
f07c6f2955
libselinux: fix build on non-Linux systems
Signed-off-by: Felix Fietkau <nbd@nbd.name>
2020-08-14 02:29:52 +08:00
Felix Fietkau
016098f1a0
libsepol: fix build on non-Linux systems
Signed-off-by: Felix Fietkau <nbd@nbd.name>
2020-08-14 02:29:31 +08:00
CN_SZTL
216a12ad0c
luci-app-passwall: bump to 3.9-37 2020-08-14 01:51:04 +08:00
CN_SZTL
1ded17ef08
Merge Mainline 2020-08-13 23:43:29 +08:00
Adrian Schmutzler
4ac3de0d51
treewide: bump PKG_RELEASE after replacing which
Bump PKG_RELEASE for the affected packages as replacing "which" by
"command -v" represents a content change.

Fixes: 1fdf6b745c ("treewide: replace `which` with `command -v`")

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-08-13 23:31:02 +08:00
Paul Spooren
6c2adde17a
treewide: replace which with command -v
Fix shellcheck SC2230
> which is non-standard. Use builtin 'command -v' instead.

Using `command -v` is POSIX compliant while `which` is not.  Also to
mention, `command -v` is a shell builtin whereas `which` is a separate
busybox applet.

Once applied to everything concerning OpenWrt we can disable the busybox
feature `which` and save 3.8kB.

Acked-by: Stijn Tintel <stijn@linux-ipv6.be>
Signed-off-by: Paul Spooren <mail@aparcar.org>
[also replace cases in zram-swap]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-08-13 23:30:21 +08:00
Magnus Kroken
b832a8c2fa
busybox: delete redundant patch
This problem has been fixed in upstream commit
6b6a3d9339f1c08efaa18a7fb7357e20b48bdc95. This patch now (harmlessly)
adds the same definition a second time.

Signed-off-by: Magnus Kroken <mkroken@gmail.com>
[bump PKG_RELEASE]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-08-13 23:29:58 +08:00
CN_SZTL
9a79f526d8
tvheadend: fix compilation with GCC 10
Co-authored-by: Rosen Penev <rosenp@gmail.com>
2020-08-13 23:18:45 +08:00
Ray Ramon
480aff0ed5
smartdns: bump to latest git HEAD 2020-08-13 23:02:22 +08:00
Daniel Golle
9d08739d15 libselinux: don't depend on kernel config symbols
Dependencies are meant to express actual run-time dependencies and
strictly speaking, libselinux can be build and used on kernels without
SELinux (not in a very meaningful way, but never mind).

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-13 22:09:59 +08:00
Daniel Golle
296d2e091f procd: remove duplicate confguration menu
Fixes: 962e73c1a4 ("procd: add selinux variant")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-13 22:09:42 +08:00
Daniel Golle
c6dcd06325 iproute2: disable SELinux for now
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-13 22:09:12 +08:00
Daniel Golle
0499f845a2 musl-fts: import from packages feed
libselinux requires musl-fts to build with musl. Import it from
packages feed as well.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-13 22:08:36 +08:00
Daniel Golle
1b66258134 pcre: import from packages feeds
libselinux require pcre, import to to core so it can build without
packages feeds.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-13 18:38:52 +08:00
Paul Spooren
18b0486999 procd: add selinux variant
This commit adds a `selinux` variant to `procd` allowing to load an
SELinux policy at boot.

Signed-off-by: Paul Spooren <mail@aparcar.org>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-08-13 18:09:26 +08:00
Thomas Petazzoni
fde0c0b497 libselinux: add new package
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[rebase, update to 3.1]
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2020-08-13 18:09:01 +08:00
Thomas Petazzoni
3de282f763 libsepol: add new package
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[rebase, update to 3.1]
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2020-08-13 18:08:29 +08:00
Rui Salvaterra
66c1487325 dropbear: fix ssh alternative when dbclient isn't built
The ssh symlink was still being created even when dbclient was disabled in the
build configuration. Fix this annoyance.

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
2020-08-13 11:59:16 +08:00
Michael Yartys
e18c93b1e1 ath10k-ct-firmware: update firmware images
Not a large change from last time, but should fix at least one rare wave-2
crash. The htt-mgt-community builds are trimmed for supporting lots of
stations (typically 150+ stations per radio).

Tested on Netgear R7800.

Signed-off-by: Michael Yartys <michael.yartys@gmail.com>
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-08-13 11:53:03 +08:00
David Woodhouse
5ba2b6a874 uboot-mediatek: resync patches with upstream
Now that my patches have been merged into upstream U-Boot, resync the
cosmetic changes and the commit IDs from the final commits.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
2020-08-13 11:49:07 +08:00
Rosen Penev
7c6b29af90 libjson-c: fix pkgconfig file
The pkgconfig file references the host directories, not the openwrt
ones. Used SED to fix as is done elsewhere. Removed CMAKE_INSTALL as a
result.

Removed now pointless CFLAGS.

Added PKG_BUILD_PARALLEL for faster compilation.

Various rearrangements for consistency between packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-08-13 11:46:43 +08:00
CN_SZTL
b1a861ac1b
luci-app-passwall: bump to 3.9-36 2020-08-12 22:59:07 +08:00
AmadeusGhost
58132eead4 rtl8821cu: fix build on arm64 2020-08-12 21:05:45 +08:00
AmadeusGhost
e81dd8b416 rtl88x2bu: fix build on arm64 2020-08-12 17:26:06 +08:00
CN_SZTL
d58524dc6f
Merge Mainline 2020-08-12 16:52:52 +08:00
CN_SZTL
5a60b9289c
duktape: use node.js tool to generate files 2020-08-12 16:40:07 +08:00
CN_SZTL
969613e938
duktape: call python2 to generate files 2020-08-12 15:35:23 +08:00
CN_SZTL
76c217e8df
Merge Mainline 2020-08-12 14:49:43 +08:00
CN_SZTL
76860e876d
luci-app-passwall: bump to 3.9-35 2020-08-12 14:15:46 +08:00
CN_SZTL
099c58a2e1
luci-app-passwall: sync with upstream source 2020-08-12 14:02:19 +08:00
CN_SZTL
f72cdc669e
luci-app-turboacc: adjust order 2020-08-12 13:46:35 +08:00
CN_SZTL
00d423c45f
luci-app-turboacc: adjust depends 2020-08-12 13:27:21 +08:00
CN_SZTL
c012018f5c
luci-app-passwall: bump to 3.9-34 2020-08-12 13:07:39 +08:00
CN_SZTL
a0db89efdb
OpenClash: bump to v0.39.7-beta 2020-08-12 13:03:42 +08:00
CN_SZTL
f834f35f1e
Revert "shortcut-fe: do not support kernel 4.9"
compilation wasn't broken by this.
2020-08-12 11:53:05 +08:00
AmadeusGhost
347febc347 rtl88x2bu/8821cu: add missing patches 2020-08-12 11:08:29 +08:00
CN_SZTL
f05a276d39
shortcut-fe-old: add package 2020-08-12 05:40:14 +08:00
CN_SZTL
10f8437438
shortcut-fe: do not support kernel 4.9 2020-08-12 05:17:18 +08:00
CN_SZTL
417b4db30f
rtl8812au-ct: drop wrong patch 2020-08-12 04:01:45 +08:00
CN_SZTL
138c3e0495
Revert "mt76: update to 2020-07-22"
This reverts commit 940391fb0e.
2020-08-12 03:56:01 +08:00