33 lines
790 B
Markdown
33 lines
790 B
Markdown
# Initial workspace
|
|
|
|
These are the shell scripts and folders that you need in order to build Minimal Linux Live.
|
|
|
|
```
|
|
src/
|
|
├── .config
|
|
├── common.sh
|
|
├── 00_clean.sh
|
|
├── 01_get_kernel.sh
|
|
├── 02_build_kernel.sh
|
|
├── 03_get_glibc.sh
|
|
├── 04_build_glibc.sh
|
|
├── 05_prepare_sysroot.sh
|
|
├── 06_get_busybox.sh
|
|
├── 07_build_busybox.sh
|
|
├── 08_prepare_bundles.sh
|
|
├── 09_generate_rootfs.sh
|
|
├── 10_pack_rootfs.sh
|
|
├── 11_generate_overlay.sh
|
|
├── 12_get_syslinux.sh
|
|
├── 12_get_systemd-boot.sh
|
|
├── 13_prepare_iso.sh
|
|
├── 14_generate_iso.sh
|
|
├── 15_generate_image.sh
|
|
├── 16_cleanup.sh
|
|
├── minimal_boot/
|
|
├── minimal_config/
|
|
├── minimal_overlay/
|
|
└── minimal_rootfs/
|
|
```
|
|
|