Skip to content

Commit

Permalink
Prevent kernel ipkg files getting into the release
Browse files Browse the repository at this point in the history
  • Loading branch information
philwhineray committed Sep 25, 2022
1 parent 87392f6 commit 60c97cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-openwrt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ do
rm -rf package/linux; touch .config
make -j1 V=s package/compile
cd ..
find "$t" -name '*.ipk' -a \! -name 'lib*.ipk' >> outputs
find "$t" -name '*.ipk' -a \! -name 'lib*.ipk' -a \! -name 'kmod*.ipk' -a \! -name 'kernel*.ipk' >> outputs
done

while read output
Expand Down

0 comments on commit 60c97cd

Please sign in to comment.