View difference between Paste ID: 7tm3DD6W and U1v6TY2E
SHOW: | | - or go back to the newest paste.
1
##Video: Uncomment to override:
2
##see: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/fb/modedb.txt
3
#kms_force_mode=video=HDMI-A-1:1024x768@60e
4
5
##Enable systemd
6
systemd=quiet init=/lib/systemd/systemd
7
8
##BeagleBone Cape Overrides
9
10
##BeagleBone Black:
11
##Disable HDMI/eMMC
12
#optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN,BB-BONE-EMMC-2G
13
14
##Disable HDMI
15-
optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN
15+
#optargs=capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN
16-
cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
16+
17-
cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
17+
//------------------This didn't work--------------------------|
18
#cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh
19
20
21
##WIP: v3.13+ capes..
22
#cape=lcd4-01
23
#cape=
24
25
##note: the eMMC flasher script relies on the next line
26
mmcroot=UUID=12b65ed8-43b8-47c6-86d1-a6468eea9d4f ro
27
mmcrootfstype=ext4 rootwait fixrtc
28
29
##These are needed to be compliant with Angstrom's 2013.06.20 u-boot.
30
console=ttyO0,115200n8
31
32
kernel_file=zImage
33
initrd_file=initrd.img
34
35
loadaddr=0x82000000
36
initrd_addr=0x88080000
37
fdtaddr=0x88000000
38
39
initrd_high=0xffffffff
40
fdt_high=0xffffffff
41
42
loadkernel=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${kernel_file}
43
loadinitrd=load mmc ${mmcdev}:${mmcpart} ${initrd_addr} ${initrd_file}; setenv initrd_size ${filesize}
44
loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdtaddr} /dtbs/${fdtfile}
45
46
loadfiles=run loadkernel; run loadinitrd; run loadfdt
47
mmcargs=setenv bootargs console=tty0 console=${console} ${optargs} ${kms_force_mode} root=${mmcroot} rootfstype=${mmcrootfstype} ${systemd}
48
49
uenvcmd=run loadfiles; run mmcargs; bootz ${loadaddr} ${initrd_addr}:${initrd_size} ${fdtaddr}
50
#