7 lines
254 B
Bash
Executable File
7 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# root of the initrd, that will be used to create the cpio archive
|
|
export ROOT="${script_dir}/build/initrd_root"
|
|
export BUSYBOX_PATH="/usr/lib/initcpio/busybox"
|