Make-initrd development discussion
 help / color / mirror / Atom feed
* [make-initrd] [PATCH v4 0/4] split pipeline into 4 features
@ 2021-10-13 17:20 Leonid Krivoshein
  2021-10-13 18:19 ` Alexey Gladkov
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Leonid Krivoshein @ 2021-10-13 17:20 UTC (permalink / raw)
  To: make-initrd

Привет!


Пробный шар -- не чтобы апстримить, а чтобы оценить самую сложную часть. 
Если всё хорошо, за ней будут ещё коммиты, которые разделяются довольно 
просто. Но первые четыре коммита -- это разделение pipeline на четыре 
части, нет смысл такое апстримить как форк ради форка, в таком виде не 
добавляется дополнительная функциональность.



Leonid Krivoshein (4):
   Separate new feature of bootchain-core from pipeline
   kickstart: fix feature to work with bootchain-core
   bootchain-core: move bootchain-sh-function to /bin
   bootchain: separate getimage and waitdev features

  features/bootchain-core/README.md             | 81 +++++++++++++++++++
  features/bootchain-core/config.mk             |  5 ++
  .../data/bin/bootchain-sh-functions}          | 12 +--
  .../data/etc/initrd/cmdline.d/bootchain-core  |  4 +
  .../data/etc/rc.d/init.d/bootchain}           | 22 +----
  .../data/lib/bootchain}/mountfs               |  2 +-
  .../data/lib/bootchain}/overlayfs             |  2 +-
  .../data/lib/bootchain}/rootfs                |  2 +-
  .../data/lib/initrd/cmdline.d/bootchain       |  6 ++
  .../data/lib/initrd/cmdline.d/pipeline        |  2 +-
  .../data/sbin/bootchained}                    | 22 ++---
  features/bootchain-core/rules.mk              |  3 +
  features/bootchain-getimage/README.md         | 24 ++++++
  features/bootchain-getimage/config.mk         |  5 ++
  .../etc/initrd/cmdline.d/bootchain-getimage   |  1 +
  .../data/lib/bootchain}/getimage              |  2 +-
  features/bootchain-getimage/rules.mk          |  2 +
  features/bootchain-waitdev/README.md          | 22 +++++
  features/bootchain-waitdev/config.mk          |  6 ++
  .../etc/initrd/cmdline.d/bootchain-waitdev    |  1 +
  .../udev/rules.d/50-bootchain-waitdev.rules}  |  2 +-
  .../data/lib/bootchain}/waitdev               |  4 +-
  .../data/lib/initrd/pre/bootchain/300-waitdev | 12 +++
  .../lib/uevent/filters/bootchain-waitdev}     |  4 +-
  features/bootchain-waitdev/rules.mk           |  2 +
  .../lib/{pipeline => bootchain}/kickstart     |  2 +-
  features/pipeline/config.mk                   |  9 +--
  .../data/etc/initrd/cmdline.d/pipeline        |  5 --
  features/pipeline/rules.mk                    |  6 --
  29 files changed, 207 insertions(+), 65 deletions(-)
  create mode 100644 features/bootchain-core/README.md
  create mode 100644 features/bootchain-core/config.mk
  rename features/{pipeline/data/sbin/pipeline-sh-functions => 
bootchain-core/data/bin/bootchain-sh-functions} (70%)
  create mode 100644 
features/bootchain-core/data/etc/initrd/cmdline.d/bootchain-core
  rename features/{pipeline/data/etc/rc.d/init.d/pipeline => 
bootchain-core/data/etc/rc.d/init.d/bootchain} (63%)
  rename features/{pipeline/data/lib/pipeline => 
bootchain-core/data/lib/bootchain}/mountfs (91%)
  rename features/{pipeline/data/lib/pipeline => 
bootchain-core/data/lib/bootchain}/overlayfs (95%)
  rename features/{pipeline/data/lib/pipeline => 
bootchain-core/data/lib/bootchain}/rootfs (86%)
  create mode 100755 
features/bootchain-core/data/lib/initrd/cmdline.d/bootchain
  rename features/{pipeline => 
bootchain-core}/data/lib/initrd/cmdline.d/pipeline (64%)
  rename features/{pipeline/data/sbin/pipelined => 
bootchain-core/data/sbin/bootchained} (78%)
  create mode 100644 features/bootchain-core/rules.mk
  create mode 100644 features/bootchain-getimage/README.md
  create mode 100644 features/bootchain-getimage/config.mk
  create mode 100644 
features/bootchain-getimage/data/etc/initrd/cmdline.d/bootchain-getimage
  rename features/{pipeline/data/lib/pipeline => 
bootchain-getimage/data/lib/bootchain}/getimage (93%)
  create mode 100644 features/bootchain-getimage/rules.mk
  create mode 100644 features/bootchain-waitdev/README.md
  create mode 100644 features/bootchain-waitdev/config.mk
  create mode 100644 
features/bootchain-waitdev/data/etc/initrd/cmdline.d/bootchain-waitdev
  rename 
features/{pipeline/data/etc/udev/rules.d/50-pipeline-waitdev.rules => 
bootchain-waitdev/data/etc/udev/rules.d/50-bootchain-waitdev.rules} (77%)
  rename features/{pipeline/data/lib/pipeline => 
bootchain-waitdev/data/lib/bootchain}/waitdev (83%)
  create mode 100755 
features/bootchain-waitdev/data/lib/initrd/pre/bootchain/300-waitdev
  rename features/{pipeline/data/lib/uevent/filters/pipeline-waitdev => 
bootchain-waitdev/data/lib/uevent/filters/bootchain-waitdev} (77%)
  create mode 100644 features/bootchain-waitdev/rules.mk
  rename features/kickstart/data/lib/{pipeline => bootchain}/kickstart (93%)
  delete mode 100644 features/pipeline/data/etc/initrd/cmdline.d/pipeline

-- 
2.24.1




^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2021-11-06 14:25 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-13 17:20 [make-initrd] [PATCH v4 0/4] split pipeline into 4 features Leonid Krivoshein
2021-10-13 18:19 ` Alexey Gladkov
2021-10-13 18:50 ` [make-initrd] broken patches? (Re: [PATCH v4 0/4] split pipeline into 4 features) Arseny Maslennikov
2021-10-13 19:04   ` Leonid Krivoshein
2021-10-13 19:17     ` Alexey Gladkov
2021-10-13 19:41       ` Leonid Krivoshein
2021-10-14  0:25         ` Антон Мидюков
2021-10-13 19:14   ` Alexey Gladkov
2021-10-24 11:13   ` Leonid Krivoshein
2021-10-24 16:38     ` Vladimir D. Seleznev
2021-10-24 16:56       ` Leonid Krivoshein
2021-10-24 17:12         ` Leonid Krivoshein
2021-10-26 21:13 ` [make-initrd] [PATCH v4 0/4] split pipeline into 4 features Vladimir D. Seleznev
2021-10-26 22:09   ` Leonid Krivoshein
2021-10-26 22:18     ` Vladimir D. Seleznev
2021-11-06 13:28     ` Alexey Gladkov
2021-11-06 14:25       ` Leonid Krivoshein

Make-initrd development discussion

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/make-initrd/0 make-initrd/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 make-initrd make-initrd/ http://lore.altlinux.org/make-initrd \
		make-initrd@lists.altlinux.org make-initrd@lists.altlinux.ru make-initrd@lists.altlinux.com
	public-inbox-index make-initrd

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.make-initrd


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git