mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-26 17:57:01 +00:00
This change separates the overlays for sysvinit and systemd builds. - The inittab is overlayed if using sysvinit. - /sbin/init is replaced by a script which calls the boot.d sequence and then execs /lib/systemd/systemd when using systemd.
5 lines
82 B
Bash
Executable File
5 lines
82 B
Bash
Executable File
#!/bin/bash
|
|
/etc/boot.d/boot
|
|
echo "Starting systemd..."
|
|
exec /lib/systemd/systemd
|