mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-26 19:17:00 +00:00
c20be94e43
* Only used in demo images at the moment to just get a user setup.
7 lines
206 B
Bash
7 lines
206 B
Bash
#!/bin/sh
|
|
|
|
OP_CHECKFILE='/etc/rpi/first-boot'
|
|
OP_FIRSTRUN='xinit /usr/rpi/scripts/first-run-wizard.sh'
|
|
|
|
[ -f $OP_CHECKFILE ] && echo -e "\nOP_STARTUP: $OP_CHECKFILE exists, not first boot." || $OP_FIRSTRUN
|