mirror of https://github.com/hak5/openwrt.git
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
|