8 lines
282 B
Bash
Executable File
8 lines
282 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"
|
|
export KERNEL="$(uname -r)"
|