Skip to content

Commit

Permalink
generate_CODEOWNERS.sh: consider ATFPATCHDIR
Browse files Browse the repository at this point in the history
  • Loading branch information
hzyitc authored and igorpecovnik committed Feb 24, 2025
1 parent bade9c7 commit 97514b1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/generate_CODEOWNERS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ function generate_for_board() {
[[ -z $LINUXCONFIG ]] && LINUXCONFIG="linux-${LINUXFAMILY}-${BRANCH}"
[[ -z $KERNELPATCHDIR ]] && KERNELPATCHDIR="archive/${LINUXFAMILY}-${KERNEL_MAJOR_MINOR}"
[[ -z $BOOTPATCHDIR ]] && BOOTPATCHDIR="u-boot-${LINUXFAMILY}"
[[ -z $ATFPATCHDIR ]] && ATFPATCHDIR="atf-${LINUXFAMILY}"
cat <<-EOF
config/boards/${board_config} ${maintainers}
Expand All @@ -55,6 +56,10 @@ function generate_for_board() {
echo "patch/u-boot/${d}/ ${maintainers}"
done < <(echo "${BOOTPATCHDIR}" | xargs -n1)
fi
if [[ -n "${ATFSOURCE}" && "${ATFSOURCE}" != "none" ]]; then
echo "patch/atf/${ATFPATCHDIR}/ ${maintainers}"
fi
)
done < <(echo "${KERNEL_TARGET}" | tr ',' '\n')
)
Expand Down

0 comments on commit 97514b1

Please sign in to comment.