Procházet zdrojové kódy

Alternative name for wireless beaglebone

Bob Mottram před 7 roky
rodič
revize
6fa15e8457
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. 4
    0
      src/freedombone-image

+ 4
- 0
src/freedombone-image Zobrazit soubor

@@ -483,6 +483,10 @@ if [ ! $PASSWORD ]; then
483 483
     PASSWORD=$(openssl rand -base64 32 | tr -dc A-Za-z0-9 | head -c ${MINIMUM_PASSWORD_LENGTH})
484 484
 fi
485 485
 
486
+if [[ $IMAGE_TYPE == 'beaglebonewireless' ]]; then
487
+    IMAGE_TYPE='beaglebonewifi'
488
+fi
489
+
486 490
 # Move any existing images into a build subdirectory
487 491
 image_types=( xz img sig vdi qcow2 )
488 492
 for im in "${image_types[@]}"