mirror of
https://git.yoctoproject.org/poky
synced 2026-03-10 17:29:40 +01:00
"poky" is the reference distribution for the Yocto Project. This renames the layer within the meta-yocto repository to meta-poky, better matching what that layer contains. A layer.conf file is left behind as this is the only way which allows existing builds to migrate safely to the new name. It will be removed at some future point. This change requires the corresponding OE-Core change to handle the migration and the changes to the infrastructure to support this. (From meta-yocto rev: d0c88df2e14672fca4ebbde93c5efbcd0e4fa9b6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
632 B
Bash
24 lines
632 B
Bash
#!/bin/sh
|
|
|
|
# Start services and customize the boot process here.
|
|
echo "Running /etc/rc.local..."
|
|
|
|
# Use init scripts included with packages such as dropbear
|
|
#/etc/init.d/dropbear start
|
|
|
|
# Spawn a getty manually
|
|
#setsid /sbin/getty 115200 ttyS2
|
|
|
|
# Print a banner
|
|
#echo "You are running a poky-tiny image brought to you by the Yocto Project."
|
|
|
|
# Setup a debugging environment
|
|
#mkdir /debugfs
|
|
#mount none -t debugfs /debugfs
|
|
|
|
# Load modules (note: linux-yocto-tiny does not have module support by default)
|
|
#modprobe yourdriver
|
|
|
|
# DO NOT run any long running tasks or loops as these will delay
|
|
# the /init script and the console shell.
|