Checking in JTE changes

This commit is contained in:
Steve McIntyre 2005-12-07 00:12:11 +00:00
parent c093888cb2
commit 537afe73f2
2 changed files with 92 additions and 129 deletions

204
Makefile
View File

@ -66,9 +66,6 @@ endif
ifndef DOJIGDO ifndef DOJIGDO
export DOJIGDO=0 export DOJIGDO=0
endif endif
ifndef JIGDOSCRIPT
JIGDOSCRIPT=$(BASEDIR)/tools/jigdo_header
endif
# Netinst/businesscard CD have different udeb_include and udeb_exclude files # Netinst/businesscard CD have different udeb_include and udeb_exclude files
ifndef UDEB_INCLUDE ifndef UDEB_INCLUDE
@ -111,6 +108,9 @@ strip_nonus_bin=$(BASEDIR)/tools/strip-nonUS-bin
add_secured=$(BASEDIR)/tools/add_secured add_secured=$(BASEDIR)/tools/add_secured
md5sum=md5sum md5sum=md5sum
fastsums=$(BASEDIR)/tools/fast_sums fastsums=$(BASEDIR)/tools/fast_sums
jigdo_cleanup=$(BASEDIR)/tools/jigdo_cleanup
grab_md5=$(BASEDIR)/tools/grab_md5
dedicated-src=$(BASEDIR)/tools/dedicated_source
BDIR=$(TDIR)/$(CODENAME)-$(ARCH) BDIR=$(TDIR)/$(CODENAME)-$(ARCH)
ADIR=$(APTTMP)/$(CODENAME)-$(ARCH) ADIR=$(APTTMP)/$(CODENAME)-$(ARCH)
@ -181,13 +181,6 @@ ifndef NONUS
@echo If we have FORCENONUSONCD1 set, we must also have NONUS set; false @echo If we have FORCENONUSONCD1 set, we must also have NONUS set; false
endif endif
endif endif
ifneq "$(DOJIGDO)" "0"
ifndef JIGDOCMD
@echo JIGDOCMD undefined -- set up CONF.sh; false
endif
else
export JIGDOCMD=false
endif
## INITIALIZATION ## ## INITIALIZATION ##
@ -223,11 +216,11 @@ bin-clean:
$(Q)rm -rf $(BDIR)/*_NONUS $(Q)rm -rf $(BDIR)/*_NONUS
$(Q)rm -f $(BDIR)/*.filelist* $(Q)rm -f $(BDIR)/*.filelist*
$(Q)rm -f $(BDIR)/packages-stamp $(BDIR)/bootable-stamp \ $(Q)rm -f $(BDIR)/packages-stamp $(BDIR)/bootable-stamp \
$(BDIR)/upgrade-stamp $(BDIR)/secured-stamp $(BDIR)/upgrade-stamp $(BDIR)/secured-stamp $(BDIR)/md5-check
src-clean: src-clean:
$(Q)rm -rf $(SDIR)/CD[1234567890]* $(Q)rm -rf $(SDIR)/CD[1234567890]*
$(Q)rm -rf $(SDIR)/*_NONUS $(Q)rm -rf $(SDIR)/*_NONUS
$(Q)rm -rf $(SDIR)/sources-stamp $(SDIR)/secured-stamp $(Q)rm -rf $(SDIR)/sources-stamp $(SDIR)/secured-stamp $(SDIR)/md5-check
# Completely cleans the current arch tree # Completely cleans the current arch tree
realclean: distclean realclean: distclean
@ -236,11 +229,9 @@ bin-distclean:
$(Q)echo "Cleaning the binary build directory" $(Q)echo "Cleaning the binary build directory"
$(Q)rm -rf $(BDIR) $(Q)rm -rf $(BDIR)
$(Q)rm -rf $(ADIR) $(Q)rm -rf $(ADIR)
$(Q)rm -rf $(TDIR)/jigdofilelist
src-distclean: src-distclean:
$(Q)echo "Cleaning the source build directory" $(Q)echo "Cleaning the source build directory"
$(Q)rm -rf $(SDIR) $(Q)rm -rf $(SDIR)
$(Q)rm -rf $(TDIR)/jigdofilelist
## STATUS and APT ## ## STATUS and APT ##
@ -767,6 +758,12 @@ $(BDIR)/upgrade-stamp:
fi fi
$(Q)touch $(BDIR)/upgrade-stamp $(Q)touch $(BDIR)/upgrade-stamp
dedicated-src: ok
$(Q)if [ -e $(BASEDIR)/data/$(CODENAME)/$(ARCH)/extra-sources ]; then \
echo "Adding extra sources for $(ARCH) onto the last binary disc".; \
$(Q)$(dedicated-src) $(BDIR) $(ARCH) $(BASEDIR) $(CODENAME) $(MIRROR); \
fi
## EXTRAS ## ## EXTRAS ##
# Launch the extras scripts correctly for customizing the CDs # Launch the extras scripts correctly for customizing the CDs
@ -868,43 +865,16 @@ $(SDIR)/secured-stamp:
done done
$(Q)touch $(SDIR)/secured-stamp $(Q)touch $(SDIR)/secured-stamp
# Make file list for jigdo (if DOJIGDO>0)
# "Fake" depend on the unstable Packages.gz to make sure we only regenerate
# this list when really necessary (saves many minutes per run).
# Don't depend on anything else as this will not work as intended, so
# make $(TDIR) ourselves just to be sure.
$(TDIR)/jigdofilelist: $(MIRROR)/dists/$(CODENAME)/main/binary-$(ARCH)/Packages.gz
@echo "Generating file list for jigdo (if requested) ..."
$(Q)set -e; \
if [ "$(DOJIGDO)" != 0 ]; then \
mkdir -p $(TDIR); \
find $(MIRROR)//dists/$(CODENAME)/main/disks-$(ARCH) \
$(MIRROR)//dists/$(CODENAME) \
$(MIRROR)//doc $(MIRROR)//indices \
$(MIRROR)//pool $(MIRROR)//project $(MIRROR)//tools \
-type f \
| egrep -v '/Contents|/README|INDEX$$|/Maintainers|/Release$$|/debian-keyring\.tar\.gz$$|/ls-lR|//doc/[^/]+/?[^/]*\.(txt|html)$$' \
> $(TDIR)/jigdofilelist; \
if [ -n "$(NONUS)" ]; then \
find $(NONUS)//dists/$(CODENAME) $(NONUS)// -type f \
| egrep -v '/Contents|/README|INDEX$$|/Maintainers|/Release$$|/debian-keyring\.tar\.gz$$|/ls-lR|//doc/[^/]+/?[^/]*\.(txt|html)$$' \
>> $(TDIR)/jigdofilelist; \
fi; \
fi
# Generates all the images # Generates all the images
images: bin-images src-images images: bin-images src-images
# DOJIGDO postboot actions (source has the appropriate subset) # DOJIGDO actions (for both binaries and source)
# 0 no isofile # 0 isofile
# 0 yes isofile post # 1 isofile + jigdo, cleanup_jigdo
# 1 no isofile jigdo jigdoadd # 2 jigdo, cleanup_jigdo
# 1 yes isofile post jigdo jigdoadd
# 2 no isojigdo jigdoadd
# 2 yes isofile post jigdo jigdoadd rmiso
# #
bin-images: ok bin-md5list $(OUT) $(TDIR)/jigdofilelist bin-images: ok bin-md5list $(OUT)
@echo "Generating the binary iso images ..." @echo "Generating the binary iso/jigdo images ..."
$(Q)set -e; \ $(Q)set -e; \
for file in $(BDIR)/*.packages; do \ for file in $(BDIR)/*.packages; do \
dir=$${file%%.packages}; \ dir=$${file%%.packages}; \
@ -916,41 +886,39 @@ bin-images: ok bin-md5list $(OUT) $(TDIR)/jigdofilelist
volid=`cat $(BDIR)/$$n.volid`; \ volid=`cat $(BDIR)/$$n.volid`; \
relname=`echo $(DEBVERSION) | sed -e 's/[. ]//g'`; \ relname=`echo $(DEBVERSION) | sed -e 's/[. ]//g'`; \
rm -f $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw; \ rm -f $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw; \
if [ "$(DOJIGDO)" = "0" ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw $$opts CD$$n; \
elif [ "$(DOJIGDO)" = "1" ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw \
-jigdo-jigdo $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.jigdo \
-jigdo-template $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.template \
-jigdo-map Debian=$(MIRROR)/ \
-jigdo-exclude boot$$n \
-md5-list $(BDIR)/md5-check \
$(JIGDO_OPTS) $$opts CD$$n; \
elif [ "$(DOJIGDO)" = "2" ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o /dev/null -v \
-jigdo-jigdo $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.jigdo \
-jigdo-template $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.template \
-jigdo-map Debian=$(MIRROR)/ \
-jigdo-exclude boot$$n \
-md5-list $(BDIR)/md5-check \
$(JIGDO_OPTS) $$opts CD$$n; \
fi; \
if [ "$(DOJIGDO)" != "0" ]; then \ if [ "$(DOJIGDO)" != "0" ]; then \
$(JIGDOSCRIPT) \ $(jigdo_cleanup) $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.jigdo \
debian-$$relname-$(ARCH)-binary-$$n.iso \ debian-$$relname-$(ARCH)-binary-$$n.iso $(BDIR)/CD$$n \
"`echo "$(JIGDOTEMPLATEURL)" | sed -e 's|%ARCH%|$(ARCH)|g'`debian-$$relname-$(ARCH)-binary-$$n.template" \ "`echo "$(JIGDOTEMPLATEURL)" | sed -e 's|%ARCH%|$(ARCH)|g'`debian-$$relname-$(ARCH)-binary-$$n.template" \
$(BINDISKINFOND) \ $(BINDISKINFOND) \
> $(TDIR)/debian-$$relname-$(ARCH).jigdo; \ $(JIGDOFALLBACKURLS) ; \
fi; \
if [ "$(DOJIGDO)" != "2" -o -f $(BASEDIR)/tools/boot/$(DI_CODENAME)/post-boot-$(ARCH) ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw $$opts CD$$n ; \
if [ -f $(BASEDIR)/tools/boot/$(DI_CODENAME)/post-boot-$(ARCH) ]; then \
$(BASEDIR)/tools/boot/$(DI_CODENAME)/post-boot-$(ARCH) $$n $$dir \
$(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw; \
fi; \
if [ "$(DOJIGDO)" != "0" ]; then \
$(BASEDIR)/tools/jigdo_create $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw \
$(OUT)/debian-$$relname-$(ARCH)-binary-$$n.jigdo \
$(OUT)/debian-$$relname-$(ARCH)-binary-$$n.template \
$(TDIR)/debian-$$relname-$(ARCH).jigdo; \
fi; \
else \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
$$opts CD$$n \
| $(BASEDIR)/tools/jigdo_create "-" \
$(OUT)/debian-$$relname-$(ARCH)-binary-$$n.jigdo \
$(OUT)/debian-$$relname-$(ARCH)-binary-$$n.template \
$(TDIR)/debian-$$relname-$(ARCH).jigdo; \
fi; \
if [ "$(DOJIGDO)" = "2" ]; then \
rm -f $(OUT)/debian-$$relname-$(ARCH)-binary-$$n.raw; \
fi; \ fi; \
done done
rm -f $(TDIR)/debian-$$relname-$(ARCH).jigdo
src-images: ok src-md5list $(OUT) $(TDIR)/jigdofilelist src-images: ok src-md5list $(OUT)
@echo "Generating the source iso images ..." @echo "Generating the source iso/jigdo images ..."
$(Q)set -e; \ $(Q)set -e; \
for file in $(SDIR)/*.sources; do \ for file in $(SDIR)/*.sources; do \
dir=$${file%%.sources}; \ dir=$${file%%.sources}; \
@ -961,40 +929,34 @@ src-images: ok src-md5list $(OUT) $(TDIR)/jigdofilelist
opts=`cat $(SDIR)/$$n.mkisofs_opts`; \ opts=`cat $(SDIR)/$$n.mkisofs_opts`; \
volid=`cat $(SDIR)/$$n.volid`; \ volid=`cat $(SDIR)/$$n.volid`; \
relname=`echo $(DEBVERSION) | sed -e 's/[. ]//g'`; \ relname=`echo $(DEBVERSION) | sed -e 's/[. ]//g'`; \
rm -f $(OUT)/debian-$$relname-$(ARCH)-source-$$n.raw; \ rm -f $(OUT)/debian-$$relname-source-$$n.raw; \
if [ "$(DOJIGDO)" = "0" ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o $(OUT)/debian-$$relname-source-$$n.raw $$opts CD$$n ; \
elif [ "$(DOJIGDO)" = "1" ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o $(OUT)/debian-$$relname-source-$$n.raw \
-jigdo-jigdo $(OUT)/debian-$$relname-source-$$n.jigdo \
-jigdo-template $(OUT)/debian-$$relname-source-$$n.template \
-jigdo-map Debian=$(MIRROR)/ \
-md5-list $(SDIR)/md5-check \
$(JIGDO_OPTS) $$opts CD$$n ; \
elif [ "$(DOJIGDO)" = "2" ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o /dev/null \
-jigdo-jigdo $(OUT)/debian-$$relname-source-$$n.jigdo \
-jigdo-template $(OUT)/debian-$$relname-source-$$n.template \
-jigdo-map Debian=$(MIRROR)/ \
-md5-list $(SDIR)/md5-check \
$(JIGDO_OPTS) $$opts CD$$n ; \
fi; \
if [ "$(DOJIGDO)" != "0" ]; then \ if [ "$(DOJIGDO)" != "0" ]; then \
$(JIGDOSCRIPT) \ $(jigdo_cleanup) $(OUT)/debian-$$relname-source-$$n.jigdo \
debian-$$relname-source-$$n.iso \ debian-$$relname-source-$$n.iso $(SDIR)/CD$$n \
"`echo "$(JIGDOTEMPLATEURL)" | sed -e 's|%ARCH%|source|g'`debian-$$relname-source-$$n.template" \ "`echo "$(JIGDOTEMPLATEURL)" | sed -e 's|%ARCH%|source|g'`debian-$$relname-source-$$n.template" \
$(SRCDISKINFOND) \ $(SRCDISKINFOND) \
> $(TDIR)/debian-$$relname-source.jigdo; \ $(JIGDOFALLBACKURLS) ; \
fi; \ fi; \
if [ "$(DOJIGDO)" != "2" ]; then \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
-o $(OUT)/debian-$$relname-source-$$n.raw $$opts CD$$n ; \
if [ "$(DOJIGDO)" != "0" ]; then \
$(BASEDIR)/tools/jigdo_create $(OUT)/debian-$$relname-source-$$n.raw \
$(OUT)/debian-$$relname-source-$$n.jigdo \
$(OUT)/debian-$$relname-source-$$n.template \
$(TDIR)/debian-$$relname-source.jigdo; \
fi; \
else \
$(MKISOFS) $(MKISOFS_OPTS) -V "$$volid" \
$$opts CD$$n \
| $(BASEDIR)/tools/jigdo_create "-" \
$(OUT)/debian-$$relname-source-$$n.jigdo \
$(OUT)/debian-$$relname-source-$$n.template \
$(TDIR)/debian-$$relname-source.jigdo; \
fi; \
done
rm -f $(TDIR)/debian-$$relname-source.jigdo
# Generate the *.list files for the Pseudo Image Kit
pi-makelist:
$(Q)set -e; \
cd $(OUT); for file in `find * -name \*.raw`; do \
$(BASEDIR)/tools/pi-makelist \
$$file > $${file%%.raw}.list; \
done done
# Generate only one image number $(CD) # Generate only one image number $(CD)
@ -1053,8 +1015,26 @@ readme:
conf: conf:
sensible-editor $(BASEDIR)/CONF.sh sensible-editor $(BASEDIR)/CONF.sh
mirrorcheck: ok apt-update mirrorcheck-binary: ok
$(Q)$(apt) cache dumpavail | $(mirrorcheck) rm -f $(BDIR)/md5-check
$(Q)$(grab_md5) $(MIRROR) $(ARCH) $(CODENAME) $(BDIR)/md5-check
if [ -n "$(NONUS)" ]; then \
$(grab_md5) $(NONUS) $(ARCH) $(CODENAME) $(BDIR)/md5-check; \
fi
$(Q)if [ -e $(BASEDIR)/data/$(CODENAME)/$(ARCH)/extra-sources ]; then \
echo "Extra dedicated source added; need to grab source MD5 info too"; \
$(Q)$(grab_md5) $(MIRROR) source $(CODENAME) $(BDIR)/md5-check; \
if [ -n "$(NONUS)" ]; then \
$(grab_md5) $(NONUS) source $(CODENAME) $(BDIR)/md5-check; \
fi; \
fi
mirrorcheck-source: ok
rm -f $(SDIR)/md5-check
$(Q)$(grab_md5) $(MIRROR) source $(CODENAME) $(SDIR)/md5-check
if [ -n "$(NONUS)" ]; then \
$(grab_md5) $(NONUS) source $(CODENAME) $(SDIR)/md5-check; \
fi
update-popcon: update-popcon:
rm -f popcon-inst rm -f popcon-inst
@ -1077,7 +1057,7 @@ update-popcon:
# Little trick to simplify things # Little trick to simplify things
official_images: bin-official_images src-official_images official_images: bin-official_images src-official_images
bin-official_images: ok bootable upgrade bin-images bin-official_images: ok bootable upgrade dedicated-src bin-images
src-official_images: ok src-doc src-images src-official_images: ok src-doc src-images
$(CODENAME)_status: ok init $(CODENAME)_status: ok init

17
README
View File

@ -25,8 +25,6 @@ Software:
- the perl Digest::MD5 module - the perl Digest::MD5 module
- lynx (for text version of README.html) and todos from sysutils - lynx (for text version of README.html) and todos from sysutils
to convert docs to DOS format (although you can rip that out, too) to convert docs to DOS format (although you can rip that out, too)
- if you want to generate .list files: tempfile, as included in debianutils
>= 1.6 (not absolutely necessary, workaround described in tools/pi-makelist)
- if you want to generate jigdo files: jigdo-file (see below) - if you want to generate jigdo files: jigdo-file (see below)
Other: Other:
- lots of free space on your disks - lots of free space on your disks
@ -274,21 +272,6 @@ instead of MIRROR when looking for local packages.
Additional targets Additional targets
================== ==================
Pseudo Image Kit
----------------
Those of you who will make images available to people for download may
consider using the Pseudo Image Kit. See http://www.debian.org/CD/pik/
for more information on the PIK.
You can launch "make pi-makelist" in order to generate
the *.list files for the images you've just generated.
The tools/pi-makelist script needs the isoinfo binary. You can get the
sources from http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html
Alternatively (and certainly simpler for people using Debian system), the
isoinfo binary is in the mkisofs package (since Debian potato at least).
Jigdo Jigdo
----- -----
You may also want to make the CD images available in jigdo format. You may also want to make the CD images available in jigdo format.