check_squashfs,memdisk,readme
This commit is contained in:
parent
cac74aef9d
commit
4f563bcc20
6 changed files with 118 additions and 47 deletions
88
readme.md
88
readme.md
|
@ -58,22 +58,82 @@ Build an ESP File System including:
|
|||
|
||||
## Tasks
|
||||
|
||||
* bash
|
||||
* mimic grubx64.efi.signed
|
||||
* efi
|
||||
* bios
|
||||
* auto setup bios device
|
||||
* --prefix '(memdisk)'
|
||||
* live
|
||||
* check squashfs option
|
||||
* python
|
||||
- [x] comply with secure boot
|
||||
- [x] choose to check squashfs or not
|
||||
|
||||
- [ ] bash
|
||||
- [ ] mimic grubx64.efi.signed ←
|
||||
- [ ] efi
|
||||
- [ ] include fonts/unicode
|
||||
- [ ] bios
|
||||
- [ ] find & setup bios device
|
||||
|
||||
- [ ] rewrite in python
|
||||
|
||||

|
||||
|
||||
### Later
|
||||
|
||||
* arm
|
||||
* keyboard layouts
|
||||
* custom fonts
|
||||
* live-media
|
||||
* -mount-opts
|
||||
- [ ] target arm
|
||||
- [ ] make keyboard layouts
|
||||
- [ ] make custom fonts
|
||||
- [ ] target specific live-media
|
||||
- [ ] -mount-opts?
|
||||
|
||||
```
|
||||
/esp
|
||||
├── bios
|
||||
│ ├── boot.img
|
||||
│ ├── core.img
|
||||
│ └── setup.sh
|
||||
├── boot
|
||||
│ ├── grub
|
||||
│ │ ├── fonts
|
||||
│ │ │ └── *.pf2
|
||||
│ │ ├── grub.cfg
|
||||
│ │ ├── grub.pgp
|
||||
│ │ ├── grubenv
|
||||
│ │ ├── i386-pc
|
||||
│ │ │ ├── *.lst
|
||||
│ │ │ └── *.mod
|
||||
│ │ ├── locale
|
||||
│ │ │ └── *.mo
|
||||
│ │ ├── themes
|
||||
│ │ │ ├── breeze
|
||||
│ │ │ │ ├── theme.txt
|
||||
│ │ │ │ ├── *.pf2
|
||||
│ │ │ │ ├── *.pf2.license
|
||||
│ │ │ │ ├── *.png
|
||||
│ │ │ │ └── *.png.license
|
||||
│ │ │ └── starfield
|
||||
│ │ │ ├── README
|
||||
│ │ │ ├── theme.txt
|
||||
│ │ │ ├── *.pf2
|
||||
│ │ │ ├── *.pf2.license
|
||||
│ │ │ ├── *.png
|
||||
│ │ │ └── *.png.license
|
||||
│ │ └── x86_64-efi
|
||||
│ │ ├── *.lst
|
||||
│ │ └── *.mod
|
||||
│ └── lsgm
|
||||
│ ├── main.sh
|
||||
│ ├── menu
|
||||
│ │ ├── cmd.sh
|
||||
│ │ ├── env.sh
|
||||
│ │ ├── gfx.sh
|
||||
│ │ ├── scan.sh
|
||||
│ │ └── set.sh
|
||||
│ └── source
|
||||
│ ├── boot.sh
|
||||
│ ├── env.sh
|
||||
│ ├── menu.sh
|
||||
│ ├── probe.sh
|
||||
│ ├── scan.sh
|
||||
│ └── util.sh
|
||||
├── efi
|
||||
│ └── boot
|
||||
│ ├── bootx64.efi
|
||||
│ ├── core.efi
|
||||
│ └── grubx64.efi
|
||||
└── grub.env
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue