lsgm,ofsp
This commit is contained in:
parent
472af2baab
commit
af54b6c8c2
1 changed files with 31 additions and 9 deletions
40
build.py
40
build.py
|
@ -72,7 +72,16 @@ def main():
|
|||
<input type="radio" onclick="update(id)"
|
||||
name="tab/my" id="tab/my/projects" />
|
||||
<label for="tab/my/projects">Projects</label>
|
||||
<div>{tabs['projects']}</div>
|
||||
<div><div class="tabs">
|
||||
<input type="radio" onclick="update(id)"
|
||||
name="tab/my/projects" id="tab/my/projects/lsgm" />
|
||||
<label for="tab/my/projects/lsgm">LSGM</label>
|
||||
<div>{tabs['lsgm']}</div>
|
||||
<input type="radio" onclick="update(id)"
|
||||
name="tab/my/projects" id="tab/my/projects/ofsp" />
|
||||
<label for="tab/my/projects/ofsp">OFSP</label>
|
||||
<div>{tabs['ofsp']}</div>
|
||||
</div></div>
|
||||
<input type="radio" onclick="update(id)"
|
||||
name="tab/my" id="tab/my/tasks" />
|
||||
<label for="tab/my/tasks">Tasks</label>
|
||||
|
@ -685,17 +694,30 @@ tabs = {
|
|||
</ul>
|
||||
''',
|
||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
'projects': f'''\
|
||||
'lsgm': f'''\
|
||||
<h1>Live Scan Grub Menu</h1>
|
||||
Generate a GRUB bootloader EFI & BIOS images with dynamic menu.
|
||||
<ul>
|
||||
<li><a href="https://youtu.be/mx2lhm7qClc">1st boot in VM with encrypted data partition</a></li>
|
||||
<ul>Setup a whole Efi System Partition:
|
||||
<li>generate GRUB EFI & BIOS images with dynamic menu</li>
|
||||
<li>scan data partition(s) for SquashFS image files</li>
|
||||
<li>live boot selected kernel, initial ramdisk and file system image</li>
|
||||
</ul>
|
||||
<ul>Work In Progress:
|
||||
<li><a href="https://youtu.be/mx2lhm7qClc">1st boot into generated VM and QCOW storage with encrypted data partition</a></li>
|
||||
</ul>
|
||||
''',
|
||||
'ofsp': f'''\
|
||||
<h1>Operating File System Profile</h1>
|
||||
Generate a bootable Debian SquashFS image from local or remote mirror.
|
||||
<ul>
|
||||
<li><a href="https://youtu.be/PSHswxc9oU8">1st roll with Textual User Interface</a></li>
|
||||
<li><a href="https://youtu.be/YhoY2gisXg4">2nd roll with Graphical User Interface</a></li>
|
||||
<ul>Build from mirror a full operating system bootable file image:
|
||||
<li>bootstrap base file system</li>
|
||||
<li>configure common core basics</li>
|
||||
<li>install TUI packages</li>
|
||||
<li>install GUI packages</li>
|
||||
<li>copy kernel and initial ramdisk for bootloader</li>
|
||||
<li>archive final file system as SquashFS file</li>
|
||||
</ul>
|
||||
<ul>Work In Progress:
|
||||
<li><a href="https://youtu.be/PSHswxc9oU8">1st roll with Textual User Interface only</a></li>
|
||||
<li><a href="https://youtu.be/YhoY2gisXg4">2nd roll with Graphical User Interface too</a></li>
|
||||
</ul>
|
||||
''',
|
||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
|
|
Loading…
Reference in a new issue