mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:29:01 +02:00
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
|