Set additional meta information
4 unresolved threads
4 unresolved threads
- The ISO volume is constructed similar to Debian 11
- The file .disk/info can be overridden
- The file .disk/info does not contain 'Official' per default
- Overrides that are required for live-setup are now explicit in rebuild.sh
- New .disk/generator contains tracable information to the rebuild.sh script
- The ISO volume is unique for each desktop environment
Merge request reports
Activity
32 32 # Acquire lock file 33 33 Acquire_lockfile 34 34 35 # Copying includes 36 cd config/includes.binary 306 434 echo "${PACKAGES}" >config/package-lists/desktop.list.chroot 307 435 fi 308 436 437 # Set meta information about the image 438 mkdir config/includes.binary/.disk 439 cat << EOF > config/includes.binary/.disk/generator 306 434 echo "${PACKAGES}" >config/package-lists/desktop.list.chroot 307 435 fi 308 436 437 # Set meta information about the image 438 mkdir config/includes.binary/.disk 439 cat << EOF > config/includes.binary/.disk/generator 440 This image was generated by $(basename ${BASH_SOURCE}) 441 Script commandline: ${REBUILD_COMMANDLINE} 442 Script hash: ${REBUILD_SHA256SUM} 443 EOF 444 if [ -z "${DISK_INFO}" ] 445 then 446 ISO8601_TIMESTAMP=$(date --utc -d@${SOURCE_DATE_EPOCH} +%Y-%m-%dT%H:%M:%SZ) 447 DISK_INFO="Auto-generated Debian GNU/Linux Live ${DEBIAN_VERSION_NUMBER} ${CONFIGURATION} ${ISO8601_TIMESTAMP}" 448 fi 449 echo -n "${DISK_INFO}" > config/includes.binary/.disk/info I've changed the dependency on
cpio
from Recommends to Depends, as cpio is now always invoked.Additionally, I did the same for
wget
, which is used (at least) for firmware downloadsEdited by Roland Clobus- Resolved by Roland Clobus
enabled an automatic merge when the pipeline for d14306a7 succeeds
mentioned in merge request !314 (merged)
mentioned in merge request images-team/live-setup!4 (merged)
Please register or sign in to reply