Skip to content

Commit a51cfa5

Browse files
committed
Add ZFS ISO build wrapper
1 parent 90028e0 commit a51cfa5

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

build-zfs-iso.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
set -eux
3+
4+
# Varsayılanlar
5+
ARCH=x86_64
6+
REPO=https://repo.voidlinux.org/current
7+
OUT=void-live-${ARCH}-zfs.iso
8+
9+
sudo /bin/bash ./mklive.sh \
10+
-a "${ARCH}" \
11+
-r "${REPO}" \
12+
-p "zfs zfs-utils" \
13+
-o "${OUT}"

0 commit comments

Comments
 (0)