1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:37:45 +00:00

LibEDID: Replace the HTML-based PNP ID parser with a CSV-based parser

The PNP ID file is now a CSV file. Update the generator to handle the
new format.
This commit is contained in:
Timothy Flynn 2023-11-07 19:23:15 -05:00 committed by Andreas Kling
parent a02e0afa41
commit fefbbff0a5
2 changed files with 23 additions and 128 deletions

View file

@ -1,7 +1,7 @@
include(${CMAKE_CURRENT_LIST_DIR}/utils.cmake)
set(PNP_IDS_URL http://www.uefi.org/uefi-pnp-export)
set(PNP_IDS_EXPORT_PATH ${SERENITY_CACHE_DIR}/pnp_ids.html)
set(PNP_IDS_URL https://uefi.org/uefi-pnp-export)
set(PNP_IDS_EXPORT_PATH ${SERENITY_CACHE_DIR}/pnp_ids.csv)
if (ENABLE_PNP_IDS_DOWNLOAD)
download_file("${PNP_IDS_URL}" "${PNP_IDS_EXPORT_PATH}")