Go to file
Michael Shigorin 180ed5359c "if test ..." replaced by "if [ ... ]"
Fixed up the remnants of the early style mix
to correspond to the proposed doc/style.txt;
the rationale being that

	if [ ... ]; then
		...
		...
	fi

is the more readable construct among itself,

	if test ...; then
		...
		...
	fi

and

	[ ... ] && {
		...
		...
	}

due to the condition being more distinguishable
when bracketed and the body more apparent as the
one inside "if" and not any other block; the less
obvious difference is that the final construct of
the latter form is prone to the whole script exit
status being non-zero if the condition isn't met.
2011-12-21 12:14:03 +02:00
.gear gear-store-tags 2011-12-19 22:50:34 +02:00
bin pkgdups.sh and semi-random tagged pkglists shuffle 2011-12-02 20:02:55 +02:00
conf.d conf.d/desktop.mk: split out distro/desktop-mini 2011-12-19 22:32:59 +02:00
doc initial isohybrid support 2011-12-16 15:22:28 +02:00
features.in "if test ..." replaced by "if [ ... ]" 2011-12-21 12:14:03 +02:00
image.in initial isohybrid support 2011-12-16 15:22:28 +02:00
lib cleanup dependency dups 2011-12-16 15:28:41 +02:00
pkg.in server, rescue pkglists: minor additions 2011-12-20 14:03:05 +02:00
sub.in "if test ..." replaced by "if [ ... ]" 2011-12-21 12:14:03 +02: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
Makefile conf/live.mk: minor refactoring 2011-12-02 17:45:41 +02:00
QUICKSTART full-view docs update 2011-11-07 00:01:36 +02:00
README introduced add_feature function 2011-11-19 11:47:29 +02: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 distro/server-base.iso;
see http://en.altlinux.org/Hasher (and a large tmpfs).

Configurables: ~/.mkimage/profiles.mk;
see doc/profiles.mk.sample and libdistro.mk

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/ иначе