Ignore:
Timestamp:
Nov 6, 2008 9:19:45 PM (5 years ago)
Author:
dkg
Message:

debirf: fixing makeiso naming bug; adding serial console boot stanza for iso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/debirf/src/debirf

    r1153 r1165  
    516516    [ -d "$DEBIRF_PROFILE" ] || failure "'$DEBIRF_PROFILE' does not seem to be a directory" 
    517517 
     518    KERNEL_VERS=$(ls -1 "$DEBIRF_ROOT/lib/modules" | head -n1) 
     519 
    518520    cd "$DEBIRF_PROFILE" || failure "Could not enter profile directory '$DEBIRF_PROFILE'." 
    519521    local KERNEL=${KERNEL:-$(echo "vmlinu"*)} 
     
    564566terminal --timeout=10 serial console 
    565567 
    566 title        Debirf ($DEBIRF_LABEL) (created $(date -R)) 
    567 kernel       /$KERNEL 
    568 initrd       /$INITRAMFS 
     568title Debirf ($DEBIRF_LABEL) (created $(date -R)) serial console 
     569kernel /$KERNEL console=ttyS0,115200n8 
     570initrd /$INITRAMFS 
     571 
     572title Debirf ($DEBIRF_LABEL) (created $(date -R)) video console 
     573kernel /$KERNEL console=tty0 
     574initrd /$INITRAMFS 
    569575EOF 
    570576 
    571577    # determine iso name 
    572     KERNEL_VERS=$(ls -1 "$DEBIRF_ROOT/lib/modules" | head -n1) 
    573578    DEBIRF_ISO="${DEBIRF_LABEL}_${DEBIRF_SUITE}_${KERNEL_VERS}.iso" 
    574579 
Note: See TracChangeset for help on using the changeset viewer.