diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2024-10-26 06:15:02 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2024-10-26 06:15:02 -0500 |
commit | 8f16d6f4ccf46918f998b09ba84ebcc95f3ede75 (patch) | |
tree | 8b83205d1502565f792908d4bef76633e85a2883 /multimedia | |
parent | f1ce2831a3d24b62d3cfa77cc131a2d38c8e06cd (diff) | |
parent | ac00a71f8c15f7f949dc55fa98bed60c98dc14b2 (diff) |
Merge branch 'trunk' of git.linuxfromscratch.org:blfs into trunk
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libdriv/intel-media.xml | 23 | ||||
-rw-r--r-- | multimedia/libdriv/libgstgtk4.xml | 9 |
2 files changed, 17 insertions, 15 deletions
diff --git a/multimedia/libdriv/intel-media.xml b/multimedia/libdriv/intel-media.xml index 3b9275ae33..5928a26c8e 100644 --- a/multimedia/libdriv/intel-media.xml +++ b/multimedia/libdriv/intel-media.xml @@ -153,18 +153,19 @@ To determine the model of the Intel GPU, install <xref linkend='pciutils'/> and run <command>lspci -nn | grep -Ei 'VGA|DISPLAY'</command> first. - It will output some information about the GPU. If the output - contains <literal>Meteor Lake</literal>, the GPU model is - <literal>MTL</literal>. Otherwise, follow - <ulink url='https://dgpu-docs.intel.com/devices/hardware-table.html'/> - to find the entry for your GPU and the model of the GPU should - be in the <quote>Architecture</quote> column. The Xe and Xe-HPG - architectures are covered by the <literal>GEN12</literal> model. + It will output some information about the GPU, including + the PCI vendor ID (<literal>8086</literal> for Intel) and the + PCI device ID. For example, with an Intel Core i5-11300H CPU, the + output is <literal>8086:9a49</literal>. Now searching for the + registeration of this device ID in the intel-media source tree: + </para> + <screen role='nodump'><userinput>grep -ri 'RegisterDevice(0x<replaceable>9a49</replaceable>'</userinput></screen> + <para> + And determine the GPU model from the file name containing the + registeration. For the example above, the file name is + <filename>media_sysinfo_g12.cpp</filename>, indicating the model + is <literal>GEN12</literal>. </para> - <!-- TODO: The info about MTL is my best guess, the referred Intel - page does not contain Meteor Lake GPU PCI devicd ID as at Feb 2024. - XeHPC is not enabled by default but they are some data center GPUs. - Not sure if anyone will run LFS in a data center. --> </note> <!-- <para> diff --git a/multimedia/libdriv/libgstgtk4.xml b/multimedia/libdriv/libgstgtk4.xml index cfe94e261b..1922ca39b4 100644 --- a/multimedia/libdriv/libgstgtk4.xml +++ b/multimedia/libdriv/libgstgtk4.xml @@ -64,12 +64,13 @@ <bridgehead renderas="sect4">Required</bridgehead> <para role="required"> - <xref linkend="cargo-c"/>, - <xref linkend="graphene"/>, - <xref linkend="gst10-plugins-base"/>, and - <xref linkend="gtk4"/> + <xref linkend="gst10-plugins-base"/>, + <xref linkend="gtk4"/>, and + <xref linkend='rust'/> </para> + &build-use-internet; + </sect2> <sect2 role="installation"> |