diff options
author | Joseph C. Lehner <joseph.c.lehner@gmail.com> | 2018-09-07 16:22:09 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-09-26 20:36:32 +0200 |
commit | 3a783e59ae0e6599a615fe199768da05609f3da0 (patch) | |
tree | 2c29216b9074cb47da86cb6cb2e62e728e3c92b7 | |
parent | 81b2bf8e3bd735500399cd9aed647bcdd0005d95 (diff) | |
download | upstream-3a783e59ae0e6599a615fe199768da05609f3da0.tar.gz upstream-3a783e59ae0e6599a615fe199768da05609f3da0.tar.bz2 upstream-3a783e59ae0e6599a615fe199768da05609f3da0.zip |
ramips: ex2700: actually remove kmod-mt76*
When building using the multiple devices option with per-device root
filesystem, only the meta package mt76 is omitted but not the
dependencies selected by the package.
Explicitly exclude all 3 mt76 packages, plus the metapackage.
Otherwise, these modules will be included in the build, wasting
a few hundred kilobytes.
Signed-off-by: Joseph C. Lehner <joseph.c.lehner@gmail.com>
[mention the root cause of the issue in the commit message]
Signed-off-by: Mathias Kresin <dev@kresin.me>
-rw-r--r-- | target/linux/ramips/image/mt7620.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/image/mt7620.mk b/target/linux/ramips/image/mt7620.mk index b6499c8806..f043c14121 100644 --- a/target/linux/ramips/image/mt7620.mk +++ b/target/linux/ramips/image/mt7620.mk @@ -211,7 +211,7 @@ define Device/ex2700 KERNEL := $(KERNEL_DTB) | uImage lzma | pad-offset 64k 64 | append-uImage-fakehdr filesystem IMAGE/factory.bin := $$(sysupgrade_bin) | check-size $$$$(IMAGE_SIZE) | \ netgear-dni - DEVICE_PACKAGES := -kmod-mt76 + DEVICE_PACKAGES := -kmod-mt76 -kmod-mt7603 -kmod-mt76x2 -kmod-mt76-core DEVICE_TITLE := Netgear EX2700 endef TARGET_DEVICES += ex2700 |