mirror of
https://github.com/riptidewave93/UNVR-NAS.git
synced 2025-03-09 15:40:13 +00:00
feat: initial upload
Initial public release
This commit is contained in:
commit
85a5bd66e0
30 changed files with 943 additions and 0 deletions
19
scripts/docker/run_mkimage_initial.sh
Executable file
19
scripts/docker/run_mkimage_initial.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
scripts_path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
|
||||
. ${scripts_path}/vars.sh
|
||||
|
||||
# Tempdir for root
|
||||
GENIMAGE_ROOT=$(mktemp -d)
|
||||
|
||||
# "fake" file so generation is happy
|
||||
touch ${GENIMAGE_ROOT}/placeholder
|
||||
|
||||
# Generate our boot and rootfs disk images
|
||||
genimage \
|
||||
--rootpath "${GENIMAGE_ROOT}" \
|
||||
--tmppath "/tmp/genimage-initial-tmppath" \
|
||||
--inputpath "${build_path}" \
|
||||
--outputpath "${build_path}" \
|
||||
--config "${root_path}/genimage_initial.cfg"
|
Loading…
Add table
Add a link
Reference in a new issue