WANT_SYMVERS now also copies Module7.symvers

This commit is contained in:
Adar Arnon
2016-07-23 10:46:44 +00:00
parent d41725bf70
commit 170dbdc1f6

View File

@@ -174,6 +174,9 @@ function update_firmware {
if [[ -f "${FW_REPOLOCAL}/Module.symvers" ]]; then if [[ -f "${FW_REPOLOCAL}/Module.symvers" ]]; then
cp "${FW_REPOLOCAL}/Module.symvers" "${FW_PATH}/" cp "${FW_REPOLOCAL}/Module.symvers" "${FW_PATH}/"
fi fi
if [[ -f "${FW_REPOLOCAL}/Module7.symvers" ]]; then
cp "${FW_REPOLOCAL}/Module7.symvers" "${FW_PATH}/"
fi
if [[ -f "${FW_REPOLOCAL}/git_hash" ]]; then if [[ -f "${FW_REPOLOCAL}/git_hash" ]]; then
cp "${FW_REPOLOCAL}/git_hash" "${FW_PATH}/" cp "${FW_REPOLOCAL}/git_hash" "${FW_PATH}/"
fi fi