chroot: clarify stages
the cache restore/save script is not a chroot modification script unlike the rest of the scripts that it was bunched up with. It is an actual component part of the chroot build stage. let's bring clarity to this with improved documentation. Gbp-Dch: Short
This commit is contained in:
parent
9f2b7b40e8
commit
24f04a924b
|
@ -26,8 +26,10 @@ Init_config_data "${@}"
|
|||
# Setting up cleanup function
|
||||
Setup_clean_exit
|
||||
|
||||
# Configuring chroot
|
||||
# Restoring cached live OS chroot from cache
|
||||
lb chroot_cache restore ${@}
|
||||
|
||||
# Configuring chroot
|
||||
lb chroot_devpts install ${@}
|
||||
lb chroot_proc install ${@}
|
||||
lb chroot_selinuxfs install ${@}
|
||||
|
@ -79,6 +81,8 @@ lb chroot_sysfs remove ${@}
|
|||
lb chroot_selinuxfs remove ${@}
|
||||
lb chroot_proc remove ${@}
|
||||
lb chroot_devpts remove ${@}
|
||||
|
||||
# Saving live OS chroot to cache
|
||||
lb chroot_cache save ${@}
|
||||
|
||||
Chroot chroot "ls -lR" > chroot.files
|
||||
|
|
Loading…
Reference in New Issue