Home
last modified time | relevance | path

Searched refs:bootargs (Results 1 – 25 of 160) sorted by relevance

1234567

/external/u-boot/board/boundary/nitrogen6x/
D6x_bootscript.txt1 setenv bootargs enable_wait_mode=off
5 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=hdmi,1280x720M@60,if=RGB24
14 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,LDB-XGA,if=RGB666
26 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,1024x600M@60,if=RGB666
38 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=lcd,CLAA-WVGA,if=RGB666
50 setenv bootargs $bootargs video=mxcfb${nextcon}:off ;
54 setenv bootargs $bootargs $fbmem
55 setenv bootargs "$bootargs console=ttymxc1,115200 vmalloc=400M consoleblank=0 rootwait"
58 setenv bootargs "$bootargs root=/dev/sda1" ;
60 setenv "bootargs $bootargs root=/dev/mmcblk0p1" ;
D6x_bootscript_android_recovery.txt3 setenv bootargs enable_wait_mode=off
5 setenv bootargs $bootargs console=ttymxc1,115200 vmalloc=400M consoleblank=0 ;
10 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,LDB-XGA,if=RGB666
22 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,1024x600M@60,if=RGB666
34 …setenv bootargs $bootargs video=mxcfb${nextcon}:dev=lcd,CLAA-WVGA,if=RGB666 tsdev=tsc2004 calibrat…
46 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=hdmi,1280x720M@60,if=RGB24
58 setenv bootargs $bootargs video=mxcfb${nextcon}:off ;
62 setenv bootargs $bootargs fbcon=$fbcon
D6x_bootscript_android.txt3 setenv bootargs enable_wait_mode=off
5 setenv bootargs $bootargs console=ttymxc1,115200 vmalloc=400M consoleblank=0 ;
10 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,LDB-XGA,if=RGB666
22 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=ldb,1024x600M@60,if=RGB666
34 …setenv bootargs $bootargs video=mxcfb${nextcon}:dev=lcd,CLAA-WVGA,if=RGB666 tsdev=tsc2004 calibrat…
46 setenv bootargs $bootargs video=mxcfb${nextcon}:dev=hdmi,1280x720M@60,if=RGB24
58 setenv bootargs $bootargs video=mxcfb${nextcon}:off ;
62 setenv bootargs $bootargs fbcon=$fbcon
/external/u-boot/arch/mips/lib/
Dbootm.c78 const char *bootargs, *next, *quote; in linux_cmdline_legacy() local
82 bootargs = env_get("bootargs"); in linux_cmdline_legacy()
83 if (!bootargs) in linux_cmdline_legacy()
86 next = bootargs; in linux_cmdline_legacy()
88 while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) { in linux_cmdline_legacy()
89 quote = strchr(bootargs, '"'); in linux_cmdline_legacy()
90 next = strchr(bootargs, ' '); in linux_cmdline_legacy()
105 next = bootargs + strlen(bootargs); in linux_cmdline_legacy()
107 linux_cmdline_set(bootargs, next - bootargs); in linux_cmdline_legacy()
112 bootargs = next; in linux_cmdline_legacy()
/external/u-boot/board/k+p/bootscripts/
Dtpcboot.cmd24 setenv mmcargs "setenv bootargs console=${console} ${smp} root=${mmcroot} \
28 setenv bootargs '${bootargs} di=${dig_in} key1=${key1}';
69 setenv nfsargs "setenv bootargs root=/dev/nfs rw \
71 setenv addip "setenv bootargs ${bootargs} \
79 setenv bootargs ${bootargs} console=${console};
/external/u-boot/configs/
Daxm_defconfig19bootargs ${bootargs} ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}:${netdev}::off\0…
/external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
Dfunctions.sh73 if echo "${bootargs}" | grep -q 'nr_cpus=[0-9]'
75 nr_cpus="`echo "${bootargs}" | sed -e 's/^.*nr_cpus=\([0-9]*\).*$/\1/'`"
98 if echo "${bootargs}" | grep -q 'maxcpus=[0-9]'
100 maxcpus="`echo "${bootargs}" | sed -e 's/^.*maxcpus=\([0-9]*\).*$/\1/'`"
Dkvm.sh84 --bootargs|--bootarg)
85 checkarg --bootargs "(list of kernel boot arguments)" "$#" "$2" '.*' '^--'
/external/u-boot/arch/sh/lib/
Dbootm.c63 char *bootargs = env_get("bootargs"); in do_bootm_linux() local
78 strcpy(cmdline, bootargs); in do_bootm_linux()
83 int val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_PROMPT, 10); in do_bootm_linux()
89 val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_DOLOAD, 10); in do_bootm_linux()
Dzimageboot.c22 char *bootargs; in do_sh_zimageboot() local
44 bootargs = env_get("bootargs"); in do_sh_zimageboot()
51 strcpy(cmdline, bootargs); in do_sh_zimageboot()
/external/u-boot/common/
Dimage-android.c75 char *bootargs = env_get("bootargs"); in android_image_get_kernel() local
76 if (bootargs) in android_image_get_kernel()
77 len += strlen(bootargs); in android_image_get_kernel()
86 if (bootargs) { in android_image_get_kernel()
87 strcpy(newbootargs, bootargs); in android_image_get_kernel()
/external/u-boot/board/keymile/scripts/
Dramfs-common.txt1 addramfs=setenv bootargs "${bootargs} phram.phram=rootfs${boot_bank},${rootfsaddr},${rootfssize}"
6 nfsargs=setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath}
/external/u-boot/cmd/
Dpxe.c589 char bootargs[CONFIG_SYS_CBSIZE]; in label_localboot() local
591 cli_simple_process_macros(label->append, bootargs); in label_localboot()
592 env_set("bootargs", bootargs); in label_localboot()
678 char bootargs[CONFIG_SYS_CBSIZE] = ""; in label_boot() local
682 strlen(ip_str) + strlen(mac_str) + 1 > sizeof(bootargs)) { in label_boot()
686 sizeof(bootargs)); in label_boot()
690 strncpy(bootargs, label->append, in label_boot()
691 sizeof(bootargs)); in label_boot()
692 strcat(bootargs, ip_str); in label_boot()
693 strcat(bootargs, mac_str); in label_boot()
[all …]
/external/u-boot/doc/
DREADME.plan99 bootargs environment variable will be copied.
11 If no command line arguments or bootargs are defined, CONFADDR is left
DREADME.silent24 - When booting a linux kernel, the "bootargs" are fixed up so that
26 it was set in "bootargs" before. If you don't want the linux command
DREADME.lynxkdi54 "fcc2_ether_addr" parameter in the "bootargs" environment
57 ==> setenv bootargs fcc2_ether_addr=00:11:22:33:44:55:66
DREADME.vxworks50 If a "bootargs" variable is defined, its content will be copied to the memory
51 location pointed by "bootaddr" as the kernel bootline. If "bootargs" is not
56 When using 'bootm', just define "bootargs" in the environment and U-Boot will
/external/u-boot/board/freescale/ls2080a/
DREADME20 One needs to use appropriate bootargs to boot Linux flavors which do
24 => setenv bootargs 'console=ttyS1,115200 root=/dev/ram
/external/u-boot/arch/nds32/dts/
Dag101p.dts14 …/* bootargs = "console=ttyS0,38400n8 earlyprintk=uart8250-32bit,0x99600000 debug bootmem_debug mem…
15 bootargs = "console=ttyS0,38400n8 earlyprintk=uart8250-32bit,0x99600000 debug loglevel=7";
Dae3xx.dts15 …/* bootargs = "console=ttyS0,38400n8 earlyprintk=uart8250-32bit,0xf0300000 debug bootmem_debug mem…
16 bootargs = "console=ttyS0,38400n8 earlyprintk=uart8250-32bit,0xf0300000 debug loglevel=7";
/external/u-boot/board/freescale/mx6sabreauto/
DREADME70 - Setup kernel bootargs:
72 # setenv bootargs "console=ttymxc3,115200 root=/dev/mmcblk0p1 rootfstype=ext4 rootwait quiet rw"
/external/u-boot/arch/xtensa/dts/
Dkc705.dts8bootargs = "earlycon=uart8250,mmio32native,0xfd050020,115200n8 console=ttyS0,115200n8 ip=dhcp root…
Dml605.dts8bootargs = "earlycon=uart8250,mmio32native,0xfd050020,115200n8 console=ttyS0,115200n8 ip=dhcp root…
Dkc705_nommu.dts8bootargs = "earlycon=uart8250,mmio32native,0x9d050020,115200n8 console=ttyS0,115200n8 ip=dhcp root…
/external/u-boot/board/samsung/common/bootscripts/
Dbootzimg.cmd2 setenv boot_kernel "setenv bootargs \"${console} root=/dev/mmcblk${mmcrootdev}p${mmcrootpart} rootf…

1234567