diff options
Diffstat (limited to 'config/coreboot/default/patches/0064-dell-optiplex_3050-add-hda_verb.c.patch')
-rw-r--r-- | config/coreboot/default/patches/0064-dell-optiplex_3050-add-hda_verb.c.patch | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/config/coreboot/default/patches/0064-dell-optiplex_3050-add-hda_verb.c.patch b/config/coreboot/default/patches/0064-dell-optiplex_3050-add-hda_verb.c.patch index d1427e22..df9accf8 100644 --- a/config/coreboot/default/patches/0064-dell-optiplex_3050-add-hda_verb.c.patch +++ b/config/coreboot/default/patches/0064-dell-optiplex_3050-add-hda_verb.c.patch @@ -1,7 +1,7 @@ -From 6731fef7759f4c67a6d0e85d16de9d99302c9b49 Mon Sep 17 00:00:00 2001 +From 782562bca3d9904e1e34f2cc6089876412b276cd Mon Sep 17 00:00:00 2001 From: Leah Rowe <info@minifree.org> Date: Sun, 6 Oct 2024 17:25:27 +0100 -Subject: [PATCH 1/1] dell/optiplex_3050: add hda_verb.c +Subject: [PATCH 64/65] dell/optiplex_3050: add hda_verb.c Configured for the line jack at the front of the machine. @@ -10,16 +10,16 @@ Based on dumps from the vendor BIOS. Signed-off-by: Leah Rowe <info@minifree.org> --- src/mainboard/dell/optiplex_3050/Kconfig | 1 + - src/mainboard/dell/optiplex_3050/Makefile.mk | 2 + + src/mainboard/dell/optiplex_3050/Makefile.mk | 3 +- src/mainboard/dell/optiplex_3050/hda_verb.c | 90 ++++++++++++++++++++ - 3 files changed, 93 insertions(+) + 3 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 src/mainboard/dell/optiplex_3050/hda_verb.c diff --git a/src/mainboard/dell/optiplex_3050/Kconfig b/src/mainboard/dell/optiplex_3050/Kconfig -index 763acda0b2..777e29745a 100644 +index 2f0dccb98d..eab6034158 100644 --- a/src/mainboard/dell/optiplex_3050/Kconfig +++ b/src/mainboard/dell/optiplex_3050/Kconfig -@@ -18,6 +18,7 @@ config BOARD_SPECIFIC_OPTIONS +@@ -16,6 +16,7 @@ config BOARD_SPECIFIC_OPTIONS select SKYLAKE_SOC_PCH_H select SOC_INTEL_KABYLAKE select SUPERIO_SMSC_SCH555x @@ -28,14 +28,15 @@ index 763acda0b2..777e29745a 100644 config CBFS_SIZE default 0x900000 diff --git a/src/mainboard/dell/optiplex_3050/Makefile.mk b/src/mainboard/dell/optiplex_3050/Makefile.mk -index c078124332..1e2626967a 100644 +index d50ea40879..90b3cc4c48 100644 --- a/src/mainboard/dell/optiplex_3050/Makefile.mk +++ b/src/mainboard/dell/optiplex_3050/Makefile.mk -@@ -6,4 +6,6 @@ bootblock-y += sch5555_ec.c +@@ -5,5 +5,6 @@ bootblock-y += sch5555_ec.c + romstage-y += romstage.c - ramstage-y += ramstage.c -+ramstage-y += hda_verb.c +-ramstage-y += ramstage.c sch5555_ec.c ++ramstage-y += ramstage.c sch5555_ec.c hda_verb.c + ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads diff --git a/src/mainboard/dell/optiplex_3050/hda_verb.c b/src/mainboard/dell/optiplex_3050/hda_verb.c |