mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
22bee79534
Now, ./tool/ports/metadata dde_linux produces the following output. PORT: dde_linux LICENSE: GPLv2 VERSION: individual (see sources) SOURCE: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.3.tar.xz VERSION 4.4.3 (lxip) SOURCE: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.16.3.tar.xz VERSION 4.16.3 (fec) SOURCE: https://github.com/cproc/dwc_otg.git git r5 (dwc_otg_host) SOURCE: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.16.3.tar.xz VERSION 4.16.3 (usb_host) SOURCE: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.16.3.tar.xz VERSION 4.16.3 (usb_hid) SOURCE: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.16.3.tar.xz VERSION 4.16.3 (usb_modem) SOURCE: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.16.3.tar.xz VERSION 4.16.3 (usb_net) Issue #4685
24 lines
673 B
Makefile
24 lines
673 B
Makefile
LICENSE := BSD
|
|
VERSION := individual (see sources)
|
|
DOWNLOADS := audio.archive
|
|
|
|
#
|
|
# Audio drivers from OpenBSD 7.3
|
|
#
|
|
SRC_DIR_AUDIO := src/lib/audio
|
|
VERSION(audio) := 7.3
|
|
BASE_URL := https://cdn.openbsd.org/pub/OpenBSD
|
|
URL(audio) := $(BASE_URL)/${VERSION(audio)}/sys.tar.gz
|
|
SHA(audio) := bb0dfa11584d68464b3f788e43655f6454bb3ecba8ad5500377630bcf23570ec
|
|
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 :
|