mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
3e82422d17
This update uses a -current (that will become 7.6 later this year) snapshot from 2024-08-16 that includes fixes for MSI support on AMD systems. Fixes #5331.
23 lines
636 B
Makefile
23 lines
636 B
Makefile
LICENSE := BSD
|
|
VERSION := individual (see sources)
|
|
DOWNLOADS := audio.archive
|
|
|
|
#
|
|
# Audio drivers from OpenBSD
|
|
#
|
|
SRC_DIR_AUDIO := src/lib/audio
|
|
VERSION(audio) := 8571a5a
|
|
URL(audio) := https://distfiles.sysret.de/Genode/dde_bsd-8571a5a.tar.xz
|
|
SHA(audio) := 4a0de8a026d3a844022135c25bab5aabfd5f77146aaedaa6d7253b2cc110efca
|
|
DIR(audio) := $(SRC_DIR_AUDIO)
|
|
TAR_OPT(audio) := --strip-components=1 --files-from $(REP_DIR)/audio.list
|
|
HASH_INPUT += $(REP_DIR)/audio.list
|
|
|
|
#
|
|
# Patches
|
|
#
|
|
PATCHES := $(addprefix patches/,$(notdir $(wildcard $(REP_DIR)/patches/*.patch)))
|
|
PATCH_OPT := -p1 -d$(SRC_DIR_AUDIO)
|
|
|
|
# vi: set ft=make :
|