mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-19 20:59:03 +02:00
19 lines
412 B
Bash
19 lines
412 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2015 Romain Perier <romain.perier@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
|
|
|
mount -t proc proc /proc
|
|
mount -t sysfs sysfs /sys
|
|
mount -t devtmpfs dev /dev
|
|
/lib/udev/udevd --daemon
|
|
pb-discover --verbose -l /var/log/pb-discover.log &
|
|
udevadm trigger --action=add
|
|
udevadm settle
|
|
|
|
clear
|
|
export TERM=screen
|
|
petitboot-nc
|
|
|