10
10
# 3. Install latest updates with 'sudo apt-get upgrade'
11
11
#
12
12
#
13
- # Version: 1.0.0-Build_13
13
+ # Version: 1.0.0-Build_14
14
14
# Change log:
15
15
# 11 Feb 2021, 3d-gussner, Inital
16
16
# 11 Feb 2021, 3d-gussner, Optional flags to check for updates
22
22
# 18 Jun 2021, 3d-gussner, Added -g 3 and 4 for more details extrusion lines
23
23
# 18 Jun 2021, 3d-gussner, Check for updates is default. Fix update if internet connection is lost.
24
24
# 21 Jun 2021, 3d-gussner, Change board_flash argument to 'y' and firmware_version to 'f'
25
+ # 25 Jan 2021, 3d-gussner, Allow upper and lower case in selection
26
+ # Add update option to release OR devel
25
27
26
28
# ### Start: Failures
27
29
failures ()
@@ -74,7 +76,7 @@ while getopts c:f:g:m:n:p:u:x:y:?h flag
74
76
# '?' 'h' argument usage and help
75
77
if [ " $help_flag " == " 1" ] ; then
76
78
echo " ***************************************"
77
- echo " * MK404-build.sh Version: 1.0.0-Build_13 *"
79
+ echo " * MK404-build.sh Version: 1.0.0-Build_14 *"
78
80
echo " ***************************************"
79
81
echo " Arguments:"
80
82
echo " $( tput setaf 2) -c$( tput sgr0) Check for update"
@@ -98,7 +100,7 @@ echo " -g : '$(tput setaf 2)0$(tput sgr0)' no, '$(tput setaf 2)1$(tput sgr0)' l
98
100
echo " -m : '$( tput setaf 2) 0$( tput sgr0) ' no, '$( tput setaf 2) 1$( tput sgr0) ' yes '$( tput setaf 2) 2$( tput sgr0) ' with MMU2"
99
101
echo " -n : '$( tput setaf 2) 0$( tput sgr0) ' no, '$( tput setaf 2) 1$( tput sgr0) ' yes"
100
102
echo " -p : '$( tput setaf 2) MK25$( tput sgr0) ', '$( tput setaf 2) MK25S$( tput sgr0) ', '$( tput setaf 2) MK3$( tput sgr0) ' or '$( tput setaf 2) MK3S$( tput sgr0) '"
101
- echo " -u : '$( tput setaf 2) 0$( tput sgr0) ' no, '$( tput setaf 2) 1$( tput sgr0) ' yes '"
103
+ echo " -u : '$( tput setaf 2) 0$( tput sgr0) ' no, '$( tput setaf 2) 1$( tput sgr0) ' release ', ' $( tput setaf 2 ) 2 $( tput sgr0 ) ' devel '"
102
104
echo " -x : '$( tput setaf 2) 8$( tput sgr0) ',$( tput setaf 2) 16$( tput sgr0) ',$( tput setaf 2) 32$( tput sgr0) ' or '$( tput setaf 2) 64$( tput sgr0) ' Kb."
103
105
echo " -y : '$( tput setaf 2) 256$( tput sgr0) ','$( tput setaf 2) 384$( tput sgr0) ','$( tput setaf 2) 512$( tput sgr0) ','$( tput setaf 2) 1024$( tput sgr0) ''$( tput setaf 2) 32M$( tput sgr0) '"
104
106
echo
170
172
# Start: Check if new build is selected
171
173
if [ " $new_build_flag " == " 1" ]; then
172
174
check_flag=1
173
- update_flag=1
174
175
fi
175
- if [ " $update_flag " == " 1" ]; then
176
+ if [[ " $update_flag " == " 1" || " $update_flag " == " 2 " ] ]; then
176
177
check_flag=1
177
178
fi
178
179
# End: Check if new build is selected
@@ -196,11 +197,13 @@ if [ ! -z $firmware_version_flag ]; then
196
197
if [ ! -z $MK404_PRINTER_TEMP ]; then
197
198
MK404_PRINTER=MK25S
198
199
fi
200
+ elif [[ ! -z $new_build_flag || ! -z $update_flag || ! -z $check_flag ]]; then
201
+ echo " continue"
199
202
else
200
203
failures 8
201
204
fi
202
205
203
- if [ -z " $MK404_PRINTER " ]; then
206
+ if [[ -z $MK404_PRINTER && -z $new_build_flag && -z $update_flag && -z $check_flag ] ]; then
204
207
failures 9
205
208
fi
206
209
@@ -232,7 +235,7 @@ if [ ! -z $mk404_printer_flag ]; then
232
235
fi
233
236
fi
234
237
235
- if [ -z $MK404_PRINTER ]; then
238
+ if [[ -z $MK404_PRINTER && -z $new_build_flag && -z $update_flag && -z $check_flag ] ]; then
236
239
failures 10
237
240
fi
238
241
@@ -399,38 +402,58 @@ if [ "$check_flag" == "1" ]; then
399
402
# Get latest release
400
403
MK404_release_url=$( curl -Ls -o /dev/null -w %{url_effective} https://github.com/$MK404_owner /$MK404_project /releases/latest)
401
404
MK404_release_tag=$( basename $MK404_release_url )
402
- # Get remote Commit_Hash
403
- # MK404_remote_GIT_COMMIT_HASH=$(git ls-remote --heads $(git config --get remote.origin.url) | grep "refs/heads/master" | cut -f 1)
404
- MK404_remote_GIT_COMMIT_HASH=$( git ls-remote | grep " refs/tags/$MK404_release_tag " | cut -f 1)
405
- # Get remote Commit_Number
406
- MK404_remote_GIT_COMMIT_NUMBER=$( git rev-list $MK404_release_tag --count)
405
+ # Get release Commit_Hash
406
+ MK404_release_GIT_COMMIT_HASH=$( git ls-remote | grep " refs/tags/$MK404_release_tag " | cut -f 1)
407
+ # Get release Commit_Number
408
+ MK404_release_GIT_COMMIT_NUMBER=$( git rev-list $MK404_release_tag --count)
409
+ # Get latest development Commit_Hash
410
+ MK404_devel_GIT_COMMIT_HASH=$( git for-each-ref refs/remotes/origin/master | cut -d" " -f 1)
411
+ # Get latest development Commit_Number
412
+ MK404_devel_GIT_COMMIT_NUMBER=$( git rev-list refs/remotes/origin/master --count)
407
413
# Output
408
414
echo " "
409
415
echo " Current version : $MK404_current_version "
410
416
echo " "
411
417
echo " Current local hash : $MK404_local_GIT_COMMIT_HASH "
412
418
echo " Current local commit nr : $MK404_local_GIT_COMMIT_NUMBER "
413
- if [ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_remote_GIT_COMMIT_HASH " ]; then
419
+ if [ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_release_GIT_COMMIT_HASH " ]; then
414
420
echo " $( tput setaf 1) "
415
421
else
416
422
echo " $( tput setaf 2) "
417
423
fi
418
424
echo " Latest release tag : $MK404_release_tag "
419
- echo " Latest release hash : $MK404_remote_GIT_COMMIT_HASH "
420
- echo " Latest remote commit nr : $MK404_remote_GIT_COMMIT_NUMBER "
425
+ echo " Latest release hash : $MK404_release_GIT_COMMIT_HASH "
426
+ echo " Latest release commit nr: $MK404_release_GIT_COMMIT_NUMBER "
427
+ if [ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_devel_GIT_COMMIT_HASH " ]; then
428
+ echo " $( tput setaf 1) "
429
+ else
430
+ echo " $( tput setaf 2) "
431
+ fi
432
+ echo " Latest devel hash : $MK404_devel_GIT_COMMIT_HASH "
433
+ echo " Latest devel commit nr : $MK404_devel_GIT_COMMIT_NUMBER "
421
434
echo " $( tput sgr 0) "
422
435
423
436
# Check for updates
424
- if [ ! -z $MK404_remote_GIT_COMMIT_HASH ]; then
425
- if [[ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_remote_GIT_COMMIT_HASH " && -z " $update_flag " ]]; then
426
- echo " $( tput setaf 2) Update is availible.$( tput sgr 0) "
427
- read -t 10 -n 1 -p " $( tput setaf 3) Update now Y/n$( tput sgr 0) " update_answer
428
- if [ " $update_answer " == " Y" ]; then
437
+ if [ ! -z $MK404_release_GIT_COMMIT_HASH ]; then
438
+ if [[ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_release_GIT_COMMIT_HASH " && -z " $update_flag " ]]; then
439
+ echo " $( tput setaf 2) Update to release is availible.$( tput sgr 0) "
440
+ read -t 10 -n 1 -p " $( tput setaf 3) Update to release now Y/n$( tput sgr 0) " update_answer
441
+ if [[ " $update_answer " == " Y" || " $update_answer " == " y " ] ]; then
429
442
update_flag=1
430
443
fi
431
444
echo " "
432
445
fi
433
446
fi
447
+ if [ ! -z $MK404_devel_GIT_COMMIT_HASH ]; then
448
+ if [[ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_devel_GIT_COMMIT_HASH " && -z " $update_flag " ]]; then
449
+ echo " $( tput setaf 2) Update to devel is availible.$( tput sgr 0) "
450
+ read -t 10 -n 1 -p " $( tput setaf 3) Update to devel now Y/n$( tput sgr 0) " update_answer
451
+ if [[ " $update_answer " == " Y" || " $update_answer " == " y" ]]; then
452
+ update_flag=2
453
+ fi
454
+ echo " "
455
+ fi
456
+ fi
434
457
fi
435
458
}
436
459
# ### End: Check for updates
439
462
fetch_updates ()
440
463
{
441
464
if [ " $update_flag " == " 1" ]; then
442
- if [ ! -z $MK404_remote_GIT_COMMIT_HASH ]; then
443
- if [ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_remote_GIT_COMMIT_HASH " ]; then
465
+ if [ ! -z $MK404_release_GIT_COMMIT_HASH ]; then
466
+ if [ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_release_GIT_COMMIT_HASH " ]; then
444
467
echo " "
445
468
git fetch --all
446
- read -t 10 -p " $( tput setaf 2) Updating MK404 !$( tput sgr 0) "
469
+ read -t 5 -p " $( tput setaf 2) Updating MK404 to release !$( tput sgr 0) "
447
470
echo " "
448
471
git reset --hard $MK404_release_tag
449
- read -t 10 -p " $( tput setaf 2) Compiling MK404 !$( tput sgr 0) "
472
+ read -t 5 -p " $( tput setaf 2) Compiling MK404 release!$( tput sgr 0) "
473
+ echo " "
474
+ new_build_flag=1
475
+ fi
476
+ fi
477
+ elif [ " $update_flag " == " 2" ]; then
478
+ if [ ! -z $MK404_devel_GIT_COMMIT_HASH ]; then
479
+ if [ " $MK404_local_GIT_COMMIT_HASH " != " $MK404_devel_GIT_COMMIT_HASH " ]; then
480
+ echo " "
481
+ git fetch --all
482
+ read -t 5 -p " $( tput setaf 2) Updating MK404 to devel!$( tput sgr 0) "
483
+ echo " "
484
+ git reset --hard origin/master
485
+ read -t 5 -p " $( tput setaf 2) Compiling MK404 devel!$( tput sgr 0) "
450
486
echo " "
451
487
new_build_flag=1
452
488
fi
0 commit comments