~tsimonq2/debian-cd/lubuntu-cosmic-changes

« back to all changes in this revision

Viewing changes to build_all.sh

  • Committer: Colin Watson
  • Date: 2005-04-07 12:43:32 UTC
  • Revision ID: Arch-1:colin.watson@canonical.com--2005%debian-cd--ubuntu--0--patch-86
pass size arguments to image targets too (e.g. bootable may need them)

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
                make list $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
64
64
 
65
65
                export OUT="$TMP_OUT/$ARCH"; mkdir -p $OUT
66
 
                make bin-official_images
 
66
                make bin-official_images $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
67
67
                echo Generating MD5Sums of the images
68
68
                make imagesums
69
69
                echo Generating list files for images
70
70
                make pi-makelist
71
71
 
72
72
                export OUT="$TMP_OUT/src"; mkdir -p $OUT
73
 
                make src-official_images
 
73
                make src-official_images $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
74
74
                echo Generating MD5Sums of the images
75
75
                make imagesums
76
76
                echo Generating list files for images
78
78
        else
79
79
                make bin-list $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
80
80
                export OUT=$TMP_OUT/$ARCH; mkdir -p $OUT
81
 
                make bin-official_images
 
81
                make bin-official_images $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
82
82
                if [ $? -gt 0 ]; then
83
83
                        echo "ERROR WHILE BUILDING OFFICIAL IMAGES !!" >&2
84
84
                        if [ "$ATTEMPT_FALLBACK" = "yes" ]; then
85
85
                                echo "I'll try to build a simple (non-bootable) CD" >&2
86
86
                                make clean
87
87
                                make installtools
88
 
                                make bin-images
 
88
                                make bin-images $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
89
89
                        else
90
90
                                # exit 1
91
91
                                continue