Skip to content

Commit

Permalink
Include grub source code in port dumps.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis95 committed Mar 13, 2020
1 parent 9fa49bb commit 3d08ad8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dxport
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ dump)
rm -rf "$dxport_builddir/dump"
mkdir -p "$dxport_builddir/dump"
cp "$dxportdir/dxport" "$dxport_builddir/dump"
for port in $dxport_all; do
for port in $dxport_all grub; do
dxport_dump "$port"
done
;;
Expand Down
11 changes: 11 additions & 0 deletions grub/grub.port.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This is not an actual port and just exists so that the grub source code is
# distributed in port dumps because the release images contain grub.
version=2.04
src_url=https://ftp.gnu.org/gnu/grub/grub-$version.tar.xz
src_type=tar.xz
src_sha256=e5292496995ad42dabe843a0192cf2a2c502e7ffcc7479398232b10a472df77d

build() {
echo "Cannot build grub: This is not an actual port." >&2
return 1
}

0 comments on commit 3d08ad8

Please sign in to comment.