Go to file
Michael Shigorin 8d16069882 stage2: squashfs blocksize tweaks
Looks like the 128k default block size is pretty well chosen:
it saves ~6% of image size compared to 64k, and subsequent
differences are ~3% per doubling the block size up to 1M
(thanks led@ for carrying out the tests).

So we'll stick with 256k for "normal" xz compression (inodes
uncompressed) and get 512k back for "tight" one (compressed).
The runtime performance issues are to be examined yet when
bootchart or the like is deployed, nothing drastic though.

With "fast" (gzip/lzo) squash compression inodes go unmolested.

For the record, tight live-webkiosk builds as 95M image in 3:40,
and tight live-flightgear.iso builds as 669M image in 6:34.  Nice.

There's no much sense going for 1M block size: e.g. live-webkiosk
would drop to 93M (3:46) but its load time would increase up to
2:07 as compared to 1:48 for -b 524288 and 1:42 for -b 262144 -noI
on a Duron 500/512M system given the very same DVD+RW media.
2012-04-09 22:03:29 +03:00
.gear gear-store-tags 2012-04-02 18:22:09 +03:00
bin more readable `make help', finally 2012-04-02 17:16:27 +03:00
conf.d conf.d/live.mk: add joystick calibration tools 2012-04-06 12:41:05 +03:00
doc stage2: tunable squashfs compression 2012-04-09 22:03:29 +03:00
features.in stage2: squashfs blocksize tweaks 2012-04-09 22:03:29 +03:00
image.in docs update 2012-04-02 18:13:14 +03:00
lib use PATH instead of hardwired pathlets 2012-04-07 15:45:40 +03:00
pkg.in docs update 2012-04-02 18:13:14 +03:00
sub.in stage2: tunable squashfs compression 2012-04-09 22:03:29 +03:00
.gitignore kernel and BUILDDIR fixes 2011-11-04 16:15:29 +02:00
COPYING actually released as free software 2011-11-04 16:15:30 +02:00
main.mk use PATH instead of hardwired pathlets 2012-04-07 15:45:40 +03:00
Makefile use PATH instead of hardwired pathlets 2012-04-07 15:45:40 +03:00
QUICKSTART check vigorously for installed mkimage 2012-01-04 22:33:53 +02:00
README docs update 2012-04-02 18:13:14 +03:00
reports.mk reports.mk: handle missing gra{phviz,cefully} 2012-04-09 22:03:29 +03:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Welcome to mkimage-profiles!

English quickstart: make server-mini.iso;
see http://en.altlinux.org/Hasher (and a large tmpfs).

Configurables: ~/.mkimage/profiles.mk;
see doc/variables.txt and conf.d/README

License: GPLv2+, see COPYING

Most docs are in Russian, welcome to learn it or ask for English.
См. тж. http://www.altlinux.org/Mkimage/Profiles/m-p

Задача:
- конфигурирование и создание образов на базе ALT Linux

Концепция:
- конфигурация, как и образ -- объект постадийной сборки
- метапрофиль служит репозиторием для построения индивидуального
  профиля, по которому создаётся итоговый образ

Особенности:
- метапрофиль может быть полностью read-only при сборке
- для сборки подыскивается предпочтительно tmpfs
- в профиль копируются только нужные объекты;
  он автономен относительно метапрофиля

Стадии работы:
- инициализация сборочного профиля
- сборка конфигурации образа
- наполнение сборочного профиля
- сборка образа

Объекты:
- дистрибутивы и виртуальные окружения:
  + описываются в conf.d/*.mk или соответственно lib/{distro,ve}.mk
  + могут основываться на предшественниках, расширяя их
  + дистрибутивы также:
    - включают один или более субпрофилей по надобности
  + желательно избегать множественного наследования, см. тж. фичи
- субпрофили:
  + список собирается в $(SUBPROFILES)
  + базовые комплекты помещены в подкаталогах под sub.in/;
    их наборы скриптов могут расширяться фичами
- фичи:
  + список собирается в $(FEATURES)
  + законченные блоки функциональности (или наборы таковых)
  + описываются в индивидуальных features.in/*/config.mk
  + могут требовать другие фичи, а также субпрофили
  + при сборке $(BUILDDIR) содержимое фич добавляется в профиль
- списки пакетов (*_LISTS):
  + просьба по возможности избегать дублирования
- индивидуальные пакеты (*_PACKAGES): см. тж. conf.d/README

Результат:
- при успешном завершении сборки образ называется по имени цели
  и укладывается в $(IMAGEDIR):
  + указанный явно,
  + либо ~/out/ (если возможно),
  + или $(BUILDDIR)/out/ иначе
- формируются отчёты, если запрошены (REPORTS)