aboutsummaryrefslogtreecommitdiff
path: root/grs
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-11-11 18:35:31 -0500
committerAnthony G. Basile <blueness@gentoo.org>2018-11-11 18:35:31 -0500
commit85345d4e5f9ab61413299368e506edc247d78a6b (patch)
tree408aae2ead2c4b48d86ea61db937ed3e0be7a28c /grs
parentgrs/TarIt.py: control the entire alt-name for the tarball (diff)
downloadgrss-85345d4e5f9ab61413299368e506edc247d78a6b.tar.gz
grss-85345d4e5f9ab61413299368e506edc247d78a6b.tar.bz2
grss-85345d4e5f9ab61413299368e506edc247d78a6b.zip
grs/Netboot.py: control the entire alt-name for the initramfs/kernel/ISO
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'grs')
-rw-r--r--grs/Netboot.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/grs/Netboot.py b/grs/Netboot.py
index 33c7b9d..59bd34b 100644
--- a/grs/Netboot.py
+++ b/grs/Netboot.py
@@ -41,20 +41,22 @@ class Netboot(HashIt):
self.kernelroot = kernelroot
self.logfile = logfile
# Prepare a year, month and day for a name timestamp.
- self.year = str(datetime.now().year).zfill(4)
- self.month = str(datetime.now().month).zfill(2)
- self.day = str(datetime.now().day).zfill(2)
- self.medium_name = 'initramfs-%s-%s%s%s' % (name, self.year, self.month, self.day)
+ year = str(datetime.now().year).zfill(4)
+ month = str(datetime.now().month).zfill(2)
+ day = str(datetime.now().day).zfill(2)
+ self.medium_name = 'initramfs-%s-%s%s%s' % (name, year, month, day)
self.digest_name = '%s.DIGESTS' % self.medium_name
- self.kernelname = 'kernel-%s-%s%s%s' % (name, self.year, self.month, self.day)
- self.cd_name = '%s-%s%s%s.iso' % (name, self.year, self.month, self.day)
+ self.kernelname = 'kernel-%s-%s%s%s' % (name, year, month, day)
+ self.cd_name = '%s-%s%s%s.iso' % (name, year, month, day)
def netbootit(self, do_cd=None, alt_name=None):
""" TODO """
if alt_name:
- self.medium_name = 'initramfs-%s-%s%s%s' % (alt_name, self.year, self.month, self.day)
+ self.medium_name = 'initramfs-%s' % alt_name
self.digest_name = '%s.DIGESTS' % self.medium_name
+ self.kernelname = 'kernel-%s' % alt_name
+ self.cd_name = '%s.iso' % alt_name
# 1. Copy the kernel to the tmpdir directory.
kernel_src = os.path.join(self.portage_configroot, 'boot/kernel')