Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] docs/manual/configure.adoc: fix location of Busybox inittab
@ 2024-09-20 17:39 Edgar Bonet
  2024-09-21 21:11 ` Yann E. MORIN
  2024-10-12 14:13 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Edgar Bonet @ 2024-09-20 17:39 UTC (permalink / raw)
  To: buildroot

Commit 89d39fc7a392 "initscripts: new package" moved the inittab
packaged for Busybox init from system/skeleton/etc to package/busybox.
The manual, however, still points to the old location, so let's fix it.

Signed-off-by: Edgar Bonet <bonet@grenoble.cnrs.fr>
---
 docs/manual/configure.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/manual/configure.adoc b/docs/manual/configure.adoc
index d27cdf3eb9..e0358aa0f9 100644
--- a/docs/manual/configure.adoc
+++ b/docs/manual/configure.adoc
@@ -399,7 +399,7 @@ can be chosen from +System configuration+, +Init system+:
    BusyBox +inittab+ syntax is special: do not use a random +inittab+
    documentation from the Internet to learn about BusyBox
    +inittab+). The default +inittab+ in Buildroot is stored in
-   +system/skeleton/etc/inittab+. Apart from mounting a few important
+   +package/busybox/inittab+. Apart from mounting a few important
    filesystems, the main job the default inittab does is to start the
    +/etc/init.d/rcS+ shell script, and start a +getty+ program (which
    provides a login prompt).
-- 
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] docs/manual/configure.adoc: fix location of Busybox inittab
  2024-09-20 17:39 [Buildroot] [PATCH 1/1] docs/manual/configure.adoc: fix location of Busybox inittab Edgar Bonet
@ 2024-09-21 21:11 ` Yann E. MORIN
  2024-10-12 14:13 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2024-09-21 21:11 UTC (permalink / raw)
  To: Edgar Bonet; +Cc: buildroot

Edgar, All,

On 2024-09-20 19:39 +0200, Edgar Bonet spake thusly:
> Commit 89d39fc7a392 "initscripts: new package" moved the inittab
> packaged for Busybox init from system/skeleton/etc to package/busybox.

Quite the archeology you did there! :-)

> The manual, however, still points to the old location, so let's fix it.
> 
> Signed-off-by: Edgar Bonet <bonet@grenoble.cnrs.fr>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  docs/manual/configure.adoc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/docs/manual/configure.adoc b/docs/manual/configure.adoc
> index d27cdf3eb9..e0358aa0f9 100644
> --- a/docs/manual/configure.adoc
> +++ b/docs/manual/configure.adoc
> @@ -399,7 +399,7 @@ can be chosen from +System configuration+, +Init system+:
>     BusyBox +inittab+ syntax is special: do not use a random +inittab+
>     documentation from the Internet to learn about BusyBox
>     +inittab+). The default +inittab+ in Buildroot is stored in
> -   +system/skeleton/etc/inittab+. Apart from mounting a few important
> +   +package/busybox/inittab+. Apart from mounting a few important
>     filesystems, the main job the default inittab does is to start the
>     +/etc/init.d/rcS+ shell script, and start a +getty+ program (which
>     provides a login prompt).
> -- 
> 2.34.1
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] docs/manual/configure.adoc: fix location of Busybox inittab
  2024-09-20 17:39 [Buildroot] [PATCH 1/1] docs/manual/configure.adoc: fix location of Busybox inittab Edgar Bonet
  2024-09-21 21:11 ` Yann E. MORIN
@ 2024-10-12 14:13 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-10-12 14:13 UTC (permalink / raw)
  To: Edgar Bonet; +Cc: buildroot

>>>>> "Edgar" == Edgar Bonet <bonet@grenoble.cnrs.fr> writes:

 > Commit 89d39fc7a392 "initscripts: new package" moved the inittab
 > packaged for Busybox init from system/skeleton/etc to package/busybox.
 > The manual, however, still points to the old location, so let's fix it.

 > Signed-off-by: Edgar Bonet <bonet@grenoble.cnrs.fr>

Committed to 2024.02.x and 2024.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-10-12 14:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-20 17:39 [Buildroot] [PATCH 1/1] docs/manual/configure.adoc: fix location of Busybox inittab Edgar Bonet
2024-09-21 21:11 ` Yann E. MORIN
2024-10-12 14:13 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox