forked from nikhiljha/pp-fedora-sdsetup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
36 lines (29 loc) · 981 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
# ^ To trigger highlighting on this file
# Installed username
USER=pine
# Additional packages to install
CPACK="quasselclient micro can-utils"
# These will be created, make sure they don't exist already!
# Set defaults, but allow them to be overridden
PP_IMAGE=${PP_IMAGE:-/dev/loop9}
PP_PARTA=${PP_PARTA:-${PP_IMAGE}p1}
PP_PARTB=${PP_PARTB:-${PP_IMAGE}p2}
PP_PARTC=${PP_PARTC:-${PP_IMAGE}p3}
FED_IMAGE=${FED_IMAGE:-/dev/loop10}
# Output file name.
OUT_NAME=${OUT_NAME:-fedora.img}
# Only needed if you want a custom file, otherwise do not change.
# FEDORA_RAW_FILE=Fedora-Minimal-Rawhide-20200302.n.1.aarch64.raw.xz
FEDORA_RAW_SOURCE=${FEDORA_RAW_SOURCE:-https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Spins/aarch64/images}
KERNEL_RAW_DIR=${KERNEL_RAW_DIR:-ppp-6.12}
export CPACK
export USER
export PP_IMAGE
export PP_PARTA
export PP_PARTB
export PP_PARTC
export OUT_NAME
export FEDORA_RAW_FILE
export FEDORA_RAW_SOURCE
export KERNEL_RAW_DIR