diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/01-build-rw-lightx.sh | 5 | ||||
-rwxr-xr-x | scripts/skip_all_stages.sh | 3 | ||||
-rwxr-xr-x | scripts/unskip_all_stages.sh | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/scripts/01-build-rw-lightx.sh b/scripts/01-build-rw-lightx.sh index 6abfe23..161d267 100755 --- a/scripts/01-build-rw-lightx.sh +++ b/scripts/01-build-rw-lightx.sh @@ -42,10 +42,11 @@ export ENABLE_SSH=1 # export PUBKEY_ONLY_SSH=1 # export STAGE_LIST="stage0 stage1 stage2 stage3a stage3b stage4 stage5" -export STAGE_LIST="stage0 stage1 stage2 stage3a" +export STAGE_LIST="stage0 stage1 stage2 stage3a stage3a_dev" touch ${rootdir}/stage2/SKIP_IMAGES -# touch ${rootdir}/stage3a/SKIP_IMAGES +touch ${rootdir}/stage3a/SKIP_IMAGES +# touch ${rootdir}/stage3a_dev/SKIP_IMAGES # touch ${rootdir}/stage3b/SKIP_IMAGES # touch ${rootdir}/stage4/SKIP_IMAGES diff --git a/scripts/skip_all_stages.sh b/scripts/skip_all_stages.sh index fd5ad1c..7fa2b73 100755 --- a/scripts/skip_all_stages.sh +++ b/scripts/skip_all_stages.sh @@ -7,6 +7,7 @@ touch ${rootdir}/stage0/SKIP touch ${rootdir}/stage1/SKIP touch ${rootdir}/stage2/SKIP touch ${rootdir}/stage3a/SKIP +touch ${rootdir}/stage3a_dev/SKIP touch ${rootdir}/stage3b/SKIP touch ${rootdir}/stage4/SKIP touch ${rootdir}/stage5/SKIP @@ -14,8 +15,10 @@ touch ${rootdir}/stage_zaf/SKIP touch ${rootdir}/stage2/SKIP_IMAGES touch ${rootdir}/stage3a/SKIP_IMAGES +touch ${rootdir}/stage3a_dev/SKIP_IMAGES touch ${rootdir}/stage3b/SKIP_IMAGES touch ${rootdir}/stage4/SKIP_IMAGES +touch ${rootdir}/stage_zaf/SKIP_IMAGES echo SKIP Entries: find ${rootdir} -name SKIP diff --git a/scripts/unskip_all_stages.sh b/scripts/unskip_all_stages.sh index af255b3..1e0437a 100755 --- a/scripts/unskip_all_stages.sh +++ b/scripts/unskip_all_stages.sh @@ -7,6 +7,7 @@ rm -f ${rootdir}/stage0/SKIP rm -f ${rootdir}/stage1/SKIP rm -f ${rootdir}/stage2/SKIP rm -f ${rootdir}/stage3a/SKIP +rm -f ${rootdir}/stage3a_dev/SKIP rm -f ${rootdir}/stage3b/SKIP rm -f ${rootdir}/stage4/SKIP rm -f ${rootdir}/stage5/SKIP @@ -14,8 +15,10 @@ rm -f ${rootdir}/stage_zaf/SKIP rm -f ${rootdir}/stage2/SKIP_IMAGES rm -f ${rootdir}/stage3a/SKIP_IMAGES +rm -f ${rootdir}/stage3a_dev/SKIP_IMAGES rm -f ${rootdir}/stage3b/SKIP_IMAGES rm -f ${rootdir}/stage4/SKIP_IMAGES +rm -f ${rootdir}/stage_zaf/SKIP_IMAGES echo SKIP Entries: find ${rootdir} -name SKIP |