mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-09 14:32:48 +00:00
118fff0472
Recent devices are configured with 4096 RX pages that lead to an increased memory usage. For the moment lower the amount to 2048 and treat in potientially lower throughput for more conservative memory consumption. Fixes #4801.
22 lines
745 B
Plaintext
22 lines
745 B
Plaintext
LICENSE := GPLv2
|
|
VERSION := 6.1.20
|
|
DOWNLOADS := linux.archive
|
|
|
|
URL(linux) := https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-$(VERSION).tar.xz
|
|
SHA(linux) := 76322de8c01a3c63b42c4d1e9b9e7d1897ddb91276e10d73d1f9df3562f031f0
|
|
DIR(linux) := src/linux
|
|
|
|
#
|
|
# Patches
|
|
#
|
|
PATCH_FILES := i915_irq.patch i915_fb_resize.patch \
|
|
iwlwifi_enable_irq_before_pnvm.patch \
|
|
iwlwifi_limit_rx_bufs.patch \
|
|
usb_message.patch \
|
|
workqueue_deadlock.patch
|
|
PATCHES += $(addprefix patches/,$(PATCH_FILES))
|
|
|
|
PATCH_OPT(patches/i915_irq.patch) := -p1 -d${DIR(linux)}
|
|
PATCH_OPT(patches/i915_fb_resize.patch) := -p1 -d${DIR(linux)}
|
|
PATCH_OPT(patches/workqueue_deadlock.patch) := -p1 -d${DIR(linux)}
|