diff options
Diffstat (limited to 'scripts/build/chroot_firmware')
-rwxr-xr-x | scripts/build/chroot_firmware | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/build/chroot_firmware b/scripts/build/chroot_firmware index 53b62cea5..190059556 100755 --- a/scripts/build/chroot_firmware +++ b/scripts/build/chroot_firmware @@ -29,10 +29,11 @@ fi Echo_message "Begin scheduling firmware installation..." # Requiring stage file -Require_stagefile .build/config .build/bootstrap +Require_stagefile config bootstrap # Checking stage file -Check_stagefile .build/chroot_firmware +STAGE_FILE="chroot_firmware" +Check_stagefile "${STAGE_FILE}" # Acquire lock file Acquire_lockfile @@ -113,4 +114,4 @@ EOF fi # Creating stage file -Create_stagefile .build/chroot_firmware +Create_stagefile "${STAGE_FILE}" |