mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 10:01:32 +02:00
6 lines
135 B
Bash
6 lines
135 B
Bash
|
#!/bin/sh
|
||
|
. /etc/functions.sh
|
||
|
cmdline="$(cat /proc/cmdline)"
|
||
|
kernel="$(find_mtd_part kernel)"
|
||
|
kexec -l $kernel --command-line=$cmdline
|