Hello,

Finally I set up my own mirror and I'm able to build my unofficial discs with debian-cd. Thanks Andy Cater and Linux-Fan for instructions!

================== ABOUT MIRROR ======================================

Currently I'm using the recommended ftpsync.tar.gz scripts to set up my mirror. However, although I was able to use ARCH_INCLUDE=amd64 to mirror amd64 binaries only, I found there is no official/supported way to include only one release (e.g. a bullseye only mirror. Please point me out if I'm wrong) . Thus the mirror disk usage is too high because it contains other older releases and testing release. It's now occupying 456GB of disk space. In contrast, the ISOs for single arch should occupying about 71GB. I found the wiki page says 'debmirror' may fit my needs. I will try it later.

================== ABOUT BUILDING DISCs ==============================

I tried my DLBD(50G) build and CUSTOM(all-in-one) build. The all-in-one build time is slightly shorter than DLBD build. The test machine is a virtual machine with 2 core and 3gb memory (host is 4 core / 8gb / ssd).

=== TIME RESULT FOR DLBD BUILD ===
real    32m18.505s
user    21m2.810s
sys     14m40.667s

=== TIME RESULT FOR ALL-IN-ONE BUILD ===
real    26m20.481s
user    19m29.255s
sys     10m14.450s

I used 'apt install debian-cd' to install, then I used the installed scripts in /usr/share/debian-cd directly.

=== Changed configurations in 'CONF.sh' are ===

export MIRROR=/path/to/my/debian/mirror
export VARIANTS=xen
export CHECKSUMS="sha512 sha256"
 export DISKTYPE=DLBD
or
 export DISKTYPE=CUSTOM
 export CUSTOMSIZE=4000000000

I tried my best to simulate an official build. I wasn't able to find the configuration values for official build. Please correct me if I missed something.

=== The build command is ===
root@mirror:/usr/share/debian-cd# time sh -c '. ./CONF.sh && export COMPLETE=1 && make distclean && make status && make official_images && make imagesums && echo ALLOK'

=== About the time result ===
I think why all-in-one build time is shorter is because it doesn't need the "try put one package, if can't, rollback" procedure. However, because it only produce one ISO file, the building process can't be parallelized. Thus with more cpu cores, the overall build time may vary, and the result can be changed.


================== ABOUT MERGING DISCs ==============================

Then I tried Thomas Schmitt's merger script. Thanks Thomas Schmitt for this script!

=== I ran this command to merge two DLBD isos ===
mkdir /cd1
mkdir /cd2
./merge_2_debian_isos debian-11.0.0-amd64-DLBD-1.iso /cd1 debian-11.0.0-amd64-DLBD-2.iso /cd2 merged.iso

=== Then use custom all-in-one iso as ground truth to compare them ===

mount -o loop,ro merged.iso /mnt
mount -o loop,ro debian-11.0.0-amd64-CUSTOM-1.iso /groundtruth
diff -q -r /mnt /groundtruth > diff.txt 2>&1
diff -r /mnt /groundtruth > diff.details.txt 2>&1

=== The result is like this ===
Files /mnt/.disk/cd_type and /groundtruth/.disk/cd_type differ
Files /mnt/.disk/info and /groundtruth/.disk/info differ
Files /mnt/.disk/mkisofs and /groundtruth/.disk/mkisofs differ
Files /mnt/README.html and /groundtruth/README.html differ
Files /mnt/README.txt and /groundtruth/README.txt differ
Files /mnt/boot/grub/efi.img and /groundtruth/boot/grub/efi.img differ
diff: /mnt/debian: recursive directory loop
Files /mnt/dists/bullseye/Release and /groundtruth/dists/bullseye/Release differ Files /mnt/dists/bullseye/contrib/binary-amd64/Packages.gz and /groundtruth/dists/bullseye/contrib/binary-amd64/Packages.gz differ
Files /mnt/dists/bullseye/contrib/i18n/Translation-cs.gz and
[balabala]
Files /mnt/dists/bullseye/main/binary-amd64/Packages.gz and /groundtruth/dists/bullseye/main/binary-amd64/Packages.gz differ Files /mnt/dists/bullseye/main/debian-installer/binary-amd64/Packages.gz and /groundtruth/dists/bullseye/main/debian-installer/binary-amd64/Packages.gz differ Files /mnt/dists/bullseye/main/i18n/Translation-ca.gz and /groundtruth/dists/bullseye/main/i18n/Translation-ca.gz differ
[balabala]
Files /mnt/dists/stable/Release and /groundtruth/dists/stable/Release differ
Files /mnt/dists/stable/contrib/binary-amd64/Packages.gz and /groundtruth/dists/stable/contrib/binary-amd64/Packages.gz differ Files /mnt/dists/stable/contrib/i18n/Translation-cs.gz and /groundtruth/dists/stable/contrib/i18n/Translation-cs.gz differ
[balabala]
Files /mnt/dists/stable/main/binary-amd64/Packages.gz and /groundtruth/dists/stable/main/binary-amd64/Packages.gz differ Files /mnt/dists/stable/main/debian-installer/binary-amd64/Packages.gz and /groundtruth/dists/stable/main/debian-installer/binary-amd64/Packages.gz differ Files /mnt/dists/stable/main/i18n/Translation-ca.gz and /groundtruth/dists/stable/main/i18n/Translation-ca.gz differ
[balabala]
Only in /groundtruth/firmware: arm-trusted-firmware-tools_2.4+dfsg-2_amd64.deb
Only in /groundtruth/firmware: firm-phoenix-ware_4.7.5+repack-1_all.deb
Only in /groundtruth/firmware: firmware-microbit-micropython-dl_1.2.4+dfsg-8_all.deb Only in /groundtruth/firmware: firmware-microbit-micropython-doc_1.0.1-2_all.deb
Only in /groundtruth/firmware: firmware-microbit-micropython_1.0.1-2_all.deb
Only in /groundtruth/firmware: firmware-tomu_2.0~rc7-2_all.deb
Only in /groundtruth/firmware: gnome-firmware_3.36.0-1_amd64.deb
Files /mnt/isolinux/boot.cat and /groundtruth/isolinux/boot.cat differ
Files /mnt/isolinux/f1.txt and /groundtruth/isolinux/f1.txt differ
Files /mnt/isolinux/isolinux.bin and /groundtruth/isolinux/isolinux.bin differ
Files /mnt/md5sum.txt and /groundtruth/md5sum.txt differ

Most differs come from READMEs, and dist/ directory. ( I haven't tried advance features of merger script yet, I will try it later)

The further details is in the attached file. I will try to analysis it.
(For size reasons, lines with md5 in it is filtered out by "sed -i -E -e '/[a-f0-9]{32,32}/d' diff.details.txt")

Best Regards,
Zhang Boyang
diff -r /mnt/.disk/cd_type /groundtruth/.disk/cd_type
1c1
< bluray
---
> full_cd
diff -r /mnt/.disk/info /groundtruth/.disk/info
1c1
< Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 DLBD Binary-1 
20220528-13:35
\ No newline at end of file
---
> Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 CUSTOM Binary-1 
> 20220528-14:56
\ No newline at end of file
diff -r /mnt/.disk/mkisofs /groundtruth/.disk/mkisofs
1c1
< xorriso -as mkisofs -r -checksum_algorithm_iso sha256,sha512 -V 'Debian 
11.0.0 amd64 1' -o /srv/mirror/debian-cd-test/debian-11.0.0-amd64-DLBD-1.iso 
-checksum-list /srv/mirror/tmp/bullseye/checksum-check 
-jigdo-checksum-algorithm md5 -jigdo-force-checksum /pool/ -jigdo-min-file-size 
1024 -jigdo-exclude 'README*' -jigdo-exclude /doc/ -jigdo-exclude /md5sum.txt 
-jigdo-exclude /.disk/ -jigdo-exclude /pics/ -jigdo-exclude 'Release*' 
-jigdo-exclude 'Packages*' -jigdo-exclude 'Sources*' -jigdo-force-md5 /pool/ 
-jigdo-jigdo /srv/mirror/debian-cd-test/debian-11.0.0-amd64-DLBD-1.jigdo 
-jigdo-template /srv/mirror/debian-cd-test/debian-11.0.0-amd64-DLBD-1.template 
-jigdo-map Debian=/home/zby/debian/ -jigdo-exclude boot1 -J -joliet-long 
-cache-inodes -isohybrid-mbr syslinux/usr/lib/ISOLINUX/isohdpfx.bin -b 
isolinux/isolinux.bin -c isolinux/boot.cat -boot-load-size 4 -boot-info-table 
-no-emul-boot -eltorito-alt-boot -e boot/grub/efi.img -no-emul-boot 
-isohybrid-gpt-basdat -isohybrid-apm-hfsplus boot1 CD1
---
> xorriso -as mkisofs -r -checksum_algorithm_iso sha256,sha512 -V 'Debian 
> 11.0.0 amd64 1' -o 
> /srv/mirror/debian-cd-test/debian-11.0.0-amd64-CUSTOM-1.iso -checksum-list 
> /srv/mirror/tmp/bullseye/checksum-check -jigdo-checksum-algorithm md5 
> -jigdo-force-checksum /pool/ -jigdo-min-file-size 1024 -jigdo-exclude 
> 'README*' -jigdo-exclude /doc/ -jigdo-exclude /md5sum.txt -jigdo-exclude 
> /.disk/ -jigdo-exclude /pics/ -jigdo-exclude 'Release*' -jigdo-exclude 
> 'Packages*' -jigdo-exclude 'Sources*' -jigdo-force-md5 /pool/ -jigdo-jigdo 
> /srv/mirror/debian-cd-test/debian-11.0.0-amd64-CUSTOM-1.jigdo -jigdo-template 
> /srv/mirror/debian-cd-test/debian-11.0.0-amd64-CUSTOM-1.template -jigdo-map 
> Debian=/home/zby/debian/ -jigdo-exclude boot1 -J -joliet-long -cache-inodes 
> -isohybrid-mbr syslinux/usr/lib/ISOLINUX/isohdpfx.bin -b 
> isolinux/isolinux.bin -c isolinux/boot.cat -boot-load-size 4 -boot-info-table 
> -no-emul-boot -eltorito-alt-boot -e boot/grub/efi.img -no-emul-boot 
> -isohybrid-gpt-basdat -isohybrid-apm-hfsplus boot1 CD1
diff -r /mnt/README.html /groundtruth/README.html
55c55
<       Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 DLBD Binary-1 
20220528-13:35
---
>       Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 CUSTOM Binary-1 
> 20220528-14:56
98,99c98,99
<     <small><strong>Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 DLBD 
Binary-1 20220528-13:35</strong></small>
<     which means that this disc is number 1 of a set of 2 discs
---
>     <small><strong>Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 
> CUSTOM Binary-1 20220528-14:56</strong></small>
>     which means that this disc is number 1 of a set of 1 discs
105c105
<     discs, up to Binary-2, contain mostly special-interest programs.</p>
---
>     discs, up to Binary-1, contain mostly special-interest programs.</p>
diff -r /mnt/README.txt /groundtruth/README.txt
1,16c1,2
< Result of a run of merge_2_debian_isos at 20220528-23:34
< Package pools and Packages lists were merged.
< The other files stem from the first input ISO.
< 
< Input ISO: debian-11.0.0-amd64-DLBD-1.iso
<      Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 DLBD Binary-1
<                                20220528-13:35
< 
< Input ISO: debian-11.0.0-amd64-DLBD-2.iso
<      Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 DLBD Binary-2
<                                20220528-13:35
< 
<  
------------------------------------------------------------------------------
< 
<      Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 DLBD Binary-1
<                                20220528-13:35
---
>     Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 CUSTOM Binary-1
>                                20220528-14:56
61,62c47,48
<      Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 DLBD Binary-1
<                                20220528-13:35
---
>     Debian GNU/Linux 11.0.0 "Bullseye" - Unofficial amd64 CUSTOM Binary-1
>                                20220528-14:56
64c50
<    which means that this disc is number 1 of a set of 2 discs It
---
>    which means that this disc is number 1 of a set of 1 discs It
70c56
<    disc. The other discs, up to Binary-2, contain mostly
---
>    disc. The other discs, up to Binary-1, contain mostly
Binary files /mnt/boot/grub/efi.img and /groundtruth/boot/grub/efi.img differ
diff: /mnt/debian: recursive directory loop
diff -r /mnt/dists/bullseye/Release /groundtruth/dists/bullseye/Release
14,30c14,50
---
32d51
33a53
35d54
37,72c56,72
---
74,90c74,110
---
92d111
93a113
95d114
97,132c116,132
---
134,150c134,170
---
152d171
153a173
155d174
157,192c176,192
---
194,210c194,230
---
212d231
213a233
215d234
217,252c236,252
---
Binary files /mnt/dists/bullseye/contrib/binary-amd64/Packages.gz and 
/groundtruth/dists/bullseye/contrib/binary-amd64/Packages.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-cs.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-cs.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-da.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-da.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-de.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-de.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-en.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-en.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-es.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-es.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-fr.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-fr.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-it.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-it.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-ja.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-ja.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-pl.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-pl.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-pt.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-pt.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-pt_BR.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-pt_BR.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-ru.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-ru.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-sk.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-sk.gz differ
Binary files /mnt/dists/bullseye/contrib/i18n/Translation-uk.gz and 
/groundtruth/dists/bullseye/contrib/i18n/Translation-uk.gz differ
Binary files /mnt/dists/bullseye/main/binary-amd64/Packages.gz and 
/groundtruth/dists/bullseye/main/binary-amd64/Packages.gz differ
Binary files /mnt/dists/bullseye/main/debian-installer/binary-amd64/Packages.gz 
and /groundtruth/dists/bullseye/main/debian-installer/binary-amd64/Packages.gz 
differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-ca.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-ca.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-cs.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-cs.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-da.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-da.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-de.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-de.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-de_DE.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-de_DE.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-el.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-el.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-en.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-en.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-eo.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-eo.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-es.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-es.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-eu.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-eu.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-fi.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-fi.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-fr.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-fr.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-gl.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-gl.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-hr.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-hr.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-hu.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-hu.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-id.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-id.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-it.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-it.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-ja.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-ja.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-km.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-km.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-ko.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-ko.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-nb.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-nb.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-nl.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-nl.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-pl.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-pl.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-pt.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-pt.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-pt_BR.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-pt_BR.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-ro.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-ro.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-ru.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-ru.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-sk.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-sk.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-sr.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-sr.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-sv.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-sv.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-tr.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-tr.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-uk.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-uk.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-vi.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-vi.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-zh.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-zh.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-zh_CN.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-zh_CN.gz differ
Binary files /mnt/dists/bullseye/main/i18n/Translation-zh_TW.gz and 
/groundtruth/dists/bullseye/main/i18n/Translation-zh_TW.gz differ
diff -r /mnt/dists/stable/Release /groundtruth/dists/stable/Release
14,30c14,50
---
32d51
33a53
35d54
37,72c56,72
---
74,90c74,110
---
92d111
93a113
95d114
97,132c116,132
---
134,150c134,170
---
152d171
153a173
155d174
157,192c176,192
---
194,210c194,230
---
212d231
213a233
215d234
217,252c236,252
---
Binary files /mnt/dists/stable/contrib/binary-amd64/Packages.gz and 
/groundtruth/dists/stable/contrib/binary-amd64/Packages.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-cs.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-cs.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-da.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-da.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-de.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-de.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-en.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-en.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-es.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-es.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-fr.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-fr.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-it.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-it.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-ja.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-ja.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-pl.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-pl.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-pt.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-pt.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-pt_BR.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-pt_BR.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-ru.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-ru.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-sk.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-sk.gz differ
Binary files /mnt/dists/stable/contrib/i18n/Translation-uk.gz and 
/groundtruth/dists/stable/contrib/i18n/Translation-uk.gz differ
Binary files /mnt/dists/stable/main/binary-amd64/Packages.gz and 
/groundtruth/dists/stable/main/binary-amd64/Packages.gz differ
Binary files /mnt/dists/stable/main/debian-installer/binary-amd64/Packages.gz 
and /groundtruth/dists/stable/main/debian-installer/binary-amd64/Packages.gz 
differ
Binary files /mnt/dists/stable/main/i18n/Translation-ca.gz and 
/groundtruth/dists/stable/main/i18n/Translation-ca.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-cs.gz and 
/groundtruth/dists/stable/main/i18n/Translation-cs.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-da.gz and 
/groundtruth/dists/stable/main/i18n/Translation-da.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-de.gz and 
/groundtruth/dists/stable/main/i18n/Translation-de.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-de_DE.gz and 
/groundtruth/dists/stable/main/i18n/Translation-de_DE.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-el.gz and 
/groundtruth/dists/stable/main/i18n/Translation-el.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-en.gz and 
/groundtruth/dists/stable/main/i18n/Translation-en.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-eo.gz and 
/groundtruth/dists/stable/main/i18n/Translation-eo.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-es.gz and 
/groundtruth/dists/stable/main/i18n/Translation-es.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-eu.gz and 
/groundtruth/dists/stable/main/i18n/Translation-eu.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-fi.gz and 
/groundtruth/dists/stable/main/i18n/Translation-fi.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-fr.gz and 
/groundtruth/dists/stable/main/i18n/Translation-fr.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-gl.gz and 
/groundtruth/dists/stable/main/i18n/Translation-gl.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-hr.gz and 
/groundtruth/dists/stable/main/i18n/Translation-hr.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-hu.gz and 
/groundtruth/dists/stable/main/i18n/Translation-hu.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-id.gz and 
/groundtruth/dists/stable/main/i18n/Translation-id.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-it.gz and 
/groundtruth/dists/stable/main/i18n/Translation-it.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-ja.gz and 
/groundtruth/dists/stable/main/i18n/Translation-ja.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-km.gz and 
/groundtruth/dists/stable/main/i18n/Translation-km.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-ko.gz and 
/groundtruth/dists/stable/main/i18n/Translation-ko.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-nb.gz and 
/groundtruth/dists/stable/main/i18n/Translation-nb.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-nl.gz and 
/groundtruth/dists/stable/main/i18n/Translation-nl.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-pl.gz and 
/groundtruth/dists/stable/main/i18n/Translation-pl.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-pt.gz and 
/groundtruth/dists/stable/main/i18n/Translation-pt.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-pt_BR.gz and 
/groundtruth/dists/stable/main/i18n/Translation-pt_BR.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-ro.gz and 
/groundtruth/dists/stable/main/i18n/Translation-ro.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-ru.gz and 
/groundtruth/dists/stable/main/i18n/Translation-ru.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-sk.gz and 
/groundtruth/dists/stable/main/i18n/Translation-sk.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-sr.gz and 
/groundtruth/dists/stable/main/i18n/Translation-sr.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-sv.gz and 
/groundtruth/dists/stable/main/i18n/Translation-sv.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-tr.gz and 
/groundtruth/dists/stable/main/i18n/Translation-tr.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-uk.gz and 
/groundtruth/dists/stable/main/i18n/Translation-uk.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-vi.gz and 
/groundtruth/dists/stable/main/i18n/Translation-vi.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-zh.gz and 
/groundtruth/dists/stable/main/i18n/Translation-zh.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-zh_CN.gz and 
/groundtruth/dists/stable/main/i18n/Translation-zh_CN.gz differ
Binary files /mnt/dists/stable/main/i18n/Translation-zh_TW.gz and 
/groundtruth/dists/stable/main/i18n/Translation-zh_TW.gz differ
Only in /groundtruth/firmware: arm-trusted-firmware-tools_2.4+dfsg-2_amd64.deb
Only in /groundtruth/firmware: firm-phoenix-ware_4.7.5+repack-1_all.deb
Only in /groundtruth/firmware: 
firmware-microbit-micropython-dl_1.2.4+dfsg-8_all.deb
Only in /groundtruth/firmware: firmware-microbit-micropython-doc_1.0.1-2_all.deb
Only in /groundtruth/firmware: firmware-microbit-micropython_1.0.1-2_all.deb
Only in /groundtruth/firmware: firmware-tomu_2.0~rc7-2_all.deb
Only in /groundtruth/firmware: gnome-firmware_3.36.0-1_amd64.deb
Binary files /mnt/isolinux/boot.cat and /groundtruth/isolinux/boot.cat differ
diff -r /mnt/isolinux/f1.txt /groundtruth/isolinux/f1.txt
4c4
< It was built 20220528-13:35; d-i 20210731+deb11u3.
---
> It was built 20220528-14:56; d-i 20210731+deb11u3.
Binary files /mnt/isolinux/isolinux.bin and /groundtruth/isolinux/isolinux.bin 
differ
diff -r /mnt/md5sum.txt /groundtruth/md5sum.txt
1,614c1,20
---
616,1467c22,45
---
1469,1482c47,52
---
1484,1785c54,134
---
1787,1809c136,388
---
1811,1812c390,513
---
1814,1925c515,524
---
1927,2216c526,573
---
2217a575,669
2218a671,765
2219a767,861
2220a863,957
2221a959,1053
2222a1055,1150
2223a1152,1246
2224a1248,1342
2225a1344,1438
2226a1440,1534
2227a1536,1630
2228a1632,1726
2229a1728,1822
2231,2355c1824,1842
---
2357,2430c1844,2025
---
2432,2639c2027,2160
---
2641,2745c2162,2204
---
2747,2886c2206,2231
---
2888,3141c2233,2306
---
3143,3620c2308,2435
---
3622,4314c2437,2457
---
4316,4354c2459,2514
---
4356,4365c2516,2665
---
4367,4679c2667,2695
---
4681,4693c2697,2734
---
4695,5118c2736,2790
---
5120,5150c2792,2916
---
5152,5190c2918,2967
---
5192,5232c2969,2982
---
5234,5798c2984,3080
---
5800,5878c3082,3121
---
5880,6065c3123,3369
---
6067,6199c3371,3508
---
6201,6236c3510,3564
---
6237a3566,4383
6239,6374c4385,4397
---
6376,6451c4399,4603
---
6453,6505c4605,4614
---
6507,6540c4616,4639
---
6542,6703c4641,5019
---
6705,6732c5021,5360
---
6734,7028c5362,5390
---
7030,7038c5392,5416
---
7040,7126c5418,5583
---
7128,7193c5585,5845
---
7195,7242c5847,5880
---
7244,7348c5882,6016
---
7350,7446c6018,6087
---
7448,7603c6089,6097
---
7605,7707c6099,6219
---
7709,7761c6221,6230
---
7763,7805c6232,6603
---
7807,7852d6604
7854,7965c6606,6622
---
7967,7997c6624,6865
---
7999,8045c6867,7615
---
8047,8097c7617,7647
---
8099,8219c7649,7763
---
8221,8227c7765,7816
---
8229,8246c7818,7937
---
8248,8360c7939,7950
---
8362,8366c7952,7967
---
8368,9227c7969,8087
---
9229,9610c8089,8270
---
9612,9646c8272,8327
---
9648,9760c8329,8346
---
9762,9924c8348,8370
---
9926,9936c8372,8556
---
9938,10094c8558,8562
---
10096,10172c8564,8832
---
10174,10232c8834,8896
---
10234,10602c8898,9349
---
10604,10649c9351,9375
---
10651,10864c9377
---
10866,11010c9379,9398
---
11012,11113c9400,9401
---
11115,11216c9403,9438
---
11218,11404c9440,9865
---
11406,11484c9867,9918
---
11486,11570c9920,10255
---
11572,12061c10257,10426
---
12063,12177c10428,10485
---
12179,12259c10487,10492
---
12261,12432c10494,10569
---
12434,12571c10571,10575
---
12573,12867c10577,10724
---
12869,13247c10726,10777
---
13249,13345c10779,10788
---
13347,13350c10790,10800
---
13352,13525c10802,10837
---
13527,13564c10839,11234
---
13566,13794c11236,11248
---
13796,13862c11250,11477
---
13864,13868c11479,11631
---
13870,13901c11633,11641
---
13903,14068c11643,11661
---
14070,14176c11663,11828
---
14178,14444c11830,11948
---
14446,14537c11950,12224
---
14539,14600c12226,12264
---
14602,14779c12266,12295
---
14781,14786c12297,12454
---
14788,15001c12456,12554
---
15003,15264c12556,12605
---
15266,15711c12607,12684
---
15713,15855c12686,12826
---
15857,15866c12828,12862
---
15868,16974c12864,12905
---
16976,17048c12907,12914
---
17050,17239c12916,12928
---
17241,17361c12930,13040
---
17363,17652c13042,13050
---
17654,17715c13052,13054
---
17717,18310c13056,13069
---
18312,18758c13071,13080
---
18760,18787c13082,13127
---
18789,19086c13129,13279
---
19088,19101c13281,13329
---
19103,19190c13331,13891
---
19192,19204c13893,13900
---
19206,19636c13902,13906
---
19638,20061c13908,13938
---
20063,20187c13940,14019
---
20189,20526c14021,14099
---
20528,20589c14101,14278
---
20591,20597c14280,14317
---
20599,21047c14319,14391
---
21049,21226c14393,14395
---
21228,21528c14397,14598
---
21530,21533c14600,14919
---
21535,21551c14921,14996
---
21553,21636c14998,15004
---
21638,21844c15006,15017
---
21846,22130c15019,15083
---
22132,22187c15085,15533
---
22189,22321c15535,15596
---
22323,22653c15598,15616
---
22655,22912c15618,15627
---
22914,23324c15629,15655
---
23326,23776c15657,15659
---
23778,23785c15661,15728
---
23787,23959c15730,15738
---
23961,24066c15740,15868
---
24068,24106c15870,15980
---
24108,24344c15982,15993
---
24346,24541c15995,16263
---
24543,24683c16265,16397
---
24685,24693c16399,16532
---
24695,25014c16534,16693
---
25016,25118c16695,17118
---
25120,25135c17120,17179
---
25137,25205c17181,17199
---
25207,25437c17201,17316
---
25439,25874c17318,17350
---
25876,26221c17352,17393
---
26223,26278c17395,17970
---
26280,26314c17972,18058
---
26316,26406c18060,18154
---
26408,26517c18156,18437
---
26519,26540c18439,18579
---
26542,26606c18581,18635
---
26608,26734c18637,18741
---
26736,26870c18743,18849
---
26872,27058c18851,19002
---
27060,27344c19004,19119
---
27346,27828c19121,19237
---
27830,28005c19239,19349
---
28007,28134c19351,19438
---
28136,28664c19440,19467
---
28666,28672c19469,19521
---
28674,28721c19523
---
28723,28840c19525,19776
---
28842,29047c19778,19992
---
29049,29143c19994,20205
---
29145,29187c20207,20217
---
29189,29619c20219,20317
---
29621,29628c20319,20688
---
29630,29635c20690,20855
---
29637,29840c20857,20866
---
29842,29929c20868,20930
---
29931,29941c20932,21131
---
29943,29978c21133,21190
---
29980,30292c21192,21408
---
30294,30416c21410,21814
---
30418,30427c21816,22005
---
30429,30511c22007,22375
---
30513,30585c22377,22404
---
30587,30715c22406,22423
---
30717,31119c22425,22457
---
31121,31338c22459,22626
---
31340,31712c22628,22719
---
31714,31878c22721,22770
---
31880,32127c22772,22779
---
32129,32255c22781,22839
---
32257,32276c22841,23382
---
32278,32280c23384,23442
---
32282,32395c23444,23597
---
32397,32504c23599,23769
---
32506,32511c23771,23822
---
32513,32651c23824,24021
---
32653,32750c24023,24091
---
32752,32893c24093,24188
---
32895,33059c24190,24451
---
33061,33105c24453,24722
---
33107,33133c24724,24727
---
33135,33899c24729,24804
---
33901,33933c24806,24932
---
33935,33945c24934,25014
---
33947,34089c25016,25354
---
34091,34448c25356,25423
---
34450,34552c25425,25597
---
34554,34567c25599,25885
---
34569,34644c25887,25966
---
34646,34747c25968,26069
---
34749,34936c26071,26076
---
34938,35166c26078,26080
---
35168,35497c26082
---
35499,35624c26084,26376
---
35626,35759c26378,26686
---
35761,35769c26688,26697
---
35771,36028c26699,26706
---
36030,36362c26708,26743
---
36364,36485c26745,26807
---
36487,36736c26809,27008
---
36738,36762c27010,27023
---
36764,36827c27025,27096
---
36829,36860c27098,27151
---
36862,36980c27153,27574
---
36982,37079c27576,27756
---
37081,37091c27758,28042
---
37093,37160c28044,28278
---
37162,37186c28280,28590
---
37188,37341c28592,28768
---
37343,37434c28770,29027
---
37436,37620c29029,29510
---
37622,37628c29512,29590
---
37630,37683c29592,29632
---
37685,37692c29634,29758
---
37694,38015c29760,29846
---
38017,38232c29848,29991
---
38234,38330c29993,30070
---
38332,38456c30072,30088
---
38458,38752c30090,30345
---
38754,38821c30347,30873
---
38823,38852c30875
---
38854,39039c30877,30880
---
39041,39164c30882,31085
---
39166,39263c31087,31373
---
39265,39295c31375,31663
---
39297,39381c31665,31764
---
39383,39388c31766,31867
---
39390,39572c31869,32038
---
39574,39813c32040,32180
---
39815,39890c32182,32186
---
39892,40041c32188,32210
---
40043,40212c32212,32369
---
40214,40284c32371,32423
---
40286,40606c32425,32439
---
40608,40782c32441,32526
---
40784,40848c32528,32636
---
40850,41203c32638,32670
---
41205,41286c32672,32833
---
41288,41355c32835,32968
---
41357,41583c32970,33031
---
41585,41883c33033,33058
---
41885,42110c33060,33094
---
42112,42505c33096,33167
---
42507,42553c33169,33198
---
42555,42615c33200,33366
---
42617,42901c33368,33423
---
42903,42932c33425,33439
---
42934,42936c33441,33511
---
42938,42977c33513,33623
---
42979,43007c33625,33893
---
43009,43011c33895,33945
---
43013,43215c33947,34159
---
43217,43310c34161,34162
---
43312,43339c34164,34383
---
43341,43571c34385,34635
---
43573,43719c34637,34647
---
43721,44200c34649,34719
---
44202,44269c34721,34840
---
44271,44292c34842,34952
---
44294,44327c34954,35298
---
44329,44505c35300,35335
---
44507,44931c35337,35435
---
44933,44961c35437,35440
---
44963,45135c35442
---
45137,45450c35444,35519
---
45452,45484c35521,35805
---
45486,45737c35807,36057
---
45739,45753c36059,36087
---
45755,45790c36089,36135
---
45792,45951c36137,36516
---
45953,46203c36518,36914
---
46205,46324c36916,37191
---
46326,46386c37193,37315
---
46388,46490c37317,37509
---
46492,46714c37511,37524
---
46716,46760c37526,37681
---
46762,47119c37683,37730
---
47121,47124c37732,37797
---
47126,47148c37799,38027
---
47150,47173c38029,38219
---
47175,47323c38221,38225
---
47325,47380c38227,38239
---
47382,47494c38241,38367
---
47496,47861c38369,38394
---
47863,48071c38396,38527
---
48073,48494c38529,38570
---
48496,48609c38572,38636
---
48611,49216c38638,38834
---
49218,49226c38836,38858
---
49228,49403c38860,38954
---
49405,49424c38956,39075
---
49426,49518c39077,39088
---
49520,49694c39090,39167
---
49696,49964c39169,39198
---
49966,50216c39200,39319
---
50218,50248c39321,39342
---
50250,50418c39344,39413
---
50420,50650c39415,39432
---
50652,50728c39434,39492
---
50730,50805c39494,39741
---
50807,50914c39743,39809
---
50916,51326d39810
51328,51531c39812,39887
---
51533,51782c39889,40054
---
51784,52012c40056,40140
---
52014,52017c40142,40228
---
52019,52132c40230,40234
---
52134,52398c40236,40309
---
52400,52456c40311,40342
---
52458,53005c40344,40475
---
53007,53040c40477,40662
---
53042,53157c40664,40789
---
53159,53174c40791,40793
---
53176,53432c40795,40839
---
53434,53573c40841,40856
---
53575,53652c40858,40867
---
53654,53920c40869,40964
---
53922,54314c40966,41096
---
54316,54329c41098,41216
---
54331,54409c41218,41230
---
54411,54680c41232,41391
---
54682,55382c41393,41506
---
55384,55527c41508,41643
---
55529,55824c41645,41895
---
55826,55916c41897,41961
---
55918,56019c41963,42033
---
56021,56165c42035,42047
---
56167,56261c42049,42232
---
56263,56340c42234,42455
---
56342,56590c42457,42513
---
56592,56595c42515,42565
---
56597,57051c42567,42657
---
57053,57516c42659,42701
---
57518,57820c42703,42704
---
57822,57855c42706,42771
---
57857,58064c42773,42791
---
58066,58113c42793,43070
---
58115,58200c43072,43141
---
58202,58774c43143,43213
---
58776,58783c43215,43439
---
58785,58788c43441,43725
---
58790,58951c43727,43910
---
58953,59129c43912,43934
---
59131,59224c43936,43959
---
59226,59597c43961,44332
---
59599,59645c44334,44582
---
59647,59791c44584,44629
---
59793,59886c44631,44741
---
59888,59951c44743,44771
---
59953,60038c44773,44798
---
60040,60064c44800,44882
---
60066c44884,45045
---
60068,60111c45047,45553
---
60113,60154c45555,45595
---
60156,60174c45597,45852
---
60176,60232c45854,47056
---
60234,60247c47058,57972
---
60249,60300c57974,58114
---
60302,60332c58116,58504
---
60334,60343c58506,59141
---
60345,60367c59143,59234
---
60369,60378c59236,59443
---
60380,60392c59445,59464
---
60394,60444c59466,59731
---
60446,60524c59733,60004
---
60526,60559c60006,60276
---
60561,60593c60278,60290
---
60595,60621c60292,60297
---
60623,60705c60299,60407
---
60707,60900c60409,60516
---
60902,60978c60518,60537
---
60980,61148c60539,60599
---
61150,61193c60601,61134
---

Reply via email to