summaryrefslogtreecommitdiffstats
path: root/defaultenv/bin/_boot_help
blob: 7c964441b881dda138df2ddf726ebd5cc199f808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

echo "boot: boot [-m <mode>] [-k <kernel_option>] [-r <rootfs_option>] [-i <ip_mode>]"
echo ""
echo "options"
echo " - kernel        nand, nor, nfs, tftp, disk"
echo " - rootfs        nand, nor, net, disk"
echo " - ip            dhcp, dhcp-barebox none, empty"
echo ""
echo "mode option"
echo "   mode       kernel      rootfs"
echo "   nand       nand        nand"
echo "   nor        nor         nor"
echo "   nfs        nfs         net"
echo "   tftp       fttp        net"
echo "   disk       disk        disk"
echo ""
echo "ip option"
echo "   dhcp          barebox and kernel will use DHCP"
echo "   dhcp-barebox  barebox will use DHCP and pass the result to the kernel"
echo "   none          do not pass ip parameter to the kernel and set it to none"
echo "   empty         pass ip parameter to the kernel"
echo ""
echo "default mode are used from the /env/config"