Merge lp://staging/~manjo/flash-kernel/flash-kernel-ubootvars into lp://staging/flash-kernel
Proposed by
Manoj Iyer
Status: | Needs review |
---|---|
Proposed branch: | lp://staging/~manjo/flash-kernel/flash-kernel-ubootvars |
Merge into: | lp://staging/flash-kernel |
Diff against target: |
84 lines (+38/-1) 5 files modified
debian/changelog (+6/-0) debian/dirs (+1/-0) debian/flash-kernel.install (+1/-0) functions (+29/-1) ubootenv.d/default.conf (+1/-0) |
To merge this branch: | bzr merge lp://staging/~manjo/flash-kernel/flash-kernel-ubootvars |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
dann frazier (community) | Needs Fixing | ||
Ubuntu Installer Team | Pending | ||
Review via email: mp+216787@code.staging.launchpad.net |
Description of the change
Added support for user defined uboot environment variables.
/usr/share/
/etc/flash-
To post a comment you must log in.
Unmerged revisions
- 750. By Manoj Iyer
-
updated changelog
- 749. By Manoj Iyer
-
Added support for user defined uboot environment variables
== adding new uboot env var == flash-kernel/ ubootenv. d/default. conf
ubuntu@c1n1:~$ cat /usr/share/
# Enter default uboot environment variables here
ubuntu@c1n1:~$ cat /etc/flash- kernel/ ubootenv. d/ti.conf
setenv mem2_reserve 5120M
ubuntu@c1n1:~$ sudo flash-kernel
ubuntu@c1n1:~$ dd if=/boot/boot.scr of=boot.4.script bs=72 skip=1
13+1 records in
13+1 records out
947 bytes (947 B) copied, 0.00103475 s, 915 kB/s
ubuntu@c1n1:~$ cat boot.4.script
setenv mem2_reserve 5120M
setenv interface scsi
echo Starting Ubuntu...
(more lines follow)
== overriding existing vars == flash-kernel/ ubootenv. d/default. conf
ubuntu@c1n1:~$ cat /usr/share/
# Enter default uboot environment variables here
setenv mem2_reserve 1204M
ubuntu@c1n1:~$ cat /etc/flash- kernel/ ubootenv. d/ti.conf
setenv mem2_reserve 5120M
ubuntu@c1n1:~$ sudo flash-kernel
ubuntu@c1n1:~$ dd if=/boot/boot.scr of=boot.4.script bs=72 skip=1
13+1 records in
13+1 records out
947 bytes (947 B) copied, 0.00103502 s, 915 kB/s
ubuntu@c1n1:~$ cat boot.4.script
setenv mem2_reserve 5120M
setenv interface scsi
echo Starting Ubuntu...
(more lines follow)