merge config/ and resources/

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2023-09-04 02:36:41 +01:00
parent a05010503f
commit da3c9bb3c5
336 changed files with 35 additions and 35 deletions
+3 -3
View File
@@ -57,7 +57,7 @@ read_config()
depend=${2} ;;
esac
done << EOF
$(eval "awk '${awkstr}' resources/git/revisions")
$(eval "awk '${awkstr}' config/git/revisions")
EOF
}
@@ -92,7 +92,7 @@ clone_project()
patch_project()
{
patchdir="resources/${name}/patches"
patchdir="config/${name}/patches"
for patchfile in "${PWD}/${patchdir}"/*.patch ; do
[ -f "${patchfile}" ] || continue
@@ -119,7 +119,7 @@ usage()
Usage: ./update project repo [name]
Options:
name: Module name as specified in resources/git/revisions
name: Module name as specified in config/git/revisions
EOF
}
+1 -1
View File
@@ -48,7 +48,7 @@ main()
[ -z "${1}" ] && err "project name not specified"
project="${1}"
cfgsdir="resources/${project}"
cfgsdir="config/${project}"
[ -d "${cfgsdir}" ] || err "unsupported project name"
shift 1