From 59a2abb203ce73401b2c0572a84c0effd19ed085 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Mon, 16 Jan 2023 18:18:04 +0100 Subject: [PATCH] board/common: include a default (empty) rc.local as example Signed-off-by: Joachim Wiberg --- board/common/rootfs/etc/rc.local | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 board/common/rootfs/etc/rc.local diff --git a/board/common/rootfs/etc/rc.local b/board/common/rootfs/etc/rc.local new file mode 100644 index 00000000..247a69d2 --- /dev/null +++ b/board/common/rootfs/etc/rc.local @@ -0,0 +1,8 @@ +#!/bin/sh +# This file is run at the very end of runlevel S (bootstrap) +# +# Note: 1) not all initctl commands are allowed here +# 2) ensure the script calls `exit 0` at the end +# + +exit 0