History log of /openbmc/u-boot/board/k+p/bootscripts/tpcboot.cmd (Results 1 – 16 of 16)
Revision Date Author Comments
# 9dc8d155 19-Sep-2018 Tom Rini <trini@konsulko.com>

Merge git://git.denx.de/u-boot-imx

- changes in pico-* boards
- fix imx6ull pinmux


# 0eee446e 18-Sep-2018 Stefano Babic <sbabic@denx.de>

Merge branch 'master' of git://git.denx.de/u-boot into master

Signed-off-by: Stefano Babic <sbabic@denx.de>


# 97657a8c 31-Aug-2018 Lukasz Majewski <lukma@denx.de>

ARM: bootscript: For nfsargs only use rootpath (and remove not needed serverip)

The serverip part is provided from DHCP server with
'option root-path "192.168.3.1:/srv/tftp/rootfs";' par

ARM: bootscript: For nfsargs only use rootpath (and remove not needed serverip)

The serverip part is provided from DHCP server with
'option root-path "192.168.3.1:/srv/tftp/rootfs";' parameter in dhcpd.conf

Signed-off-by: Lukasz Majewski <lukma@denx.de>

show more ...


# 7e6bba20 31-Aug-2018 Lukasz Majewski <lukma@denx.de>

ARM: bootscript: Fix the nfsargs and addip in K+P's tpcboot.cmd

The quotes around ${bootargs} were missing as we elaborate those variables
twice - once when we "setenv" the command and s

ARM: bootscript: Fix the nfsargs and addip in K+P's tpcboot.cmd

The quotes around ${bootargs} were missing as we elaborate those variables
twice - once when we "setenv" the command and secondly when we "run" it.
Without quotes we have just empty string in the second call.

Moreover there is an issue with line breaks - as the original commands
got truncated.

Signed-off-by: Lukasz Majewski <lukma@denx.de>

show more ...


# 2d558da0 31-Aug-2018 Lukasz Majewski <lukma@denx.de>

ARM: bootscript: Replace tftpboot with dhcp when downloading kernel

The 'dhcp' command is more versatile as it allows working with the DHCP
server to obtain serverip, ipaddress and other

ARM: bootscript: Replace tftpboot with dhcp when downloading kernel

The 'dhcp' command is more versatile as it allows working with the DHCP
server to obtain serverip, ipaddress and other network parameters.

The configuration necessary to obtain the serverip (dhcpd.conf):
option option-150 code 150 = ip-address;

and in the subnet definition:
option option-150 192.168.X.Y;

Signed-off-by: Lukasz Majewski <lukma@denx.de>

show more ...


# 21c22db0 31-Aug-2018 Lukasz Majewski <lukma@denx.de>

ARM: bootscript: Remove hard-coded rootpath from K+P's tpcboot.cmd

The 'rootpath' can be provided by DHCP server. Removing this line prevents
from overwriting it.

To do that on

ARM: bootscript: Remove hard-coded rootpath from K+P's tpcboot.cmd

The 'rootpath' can be provided by DHCP server. Removing this line prevents
from overwriting it.

To do that on the DHCP server side (isc-dhcp-server) modify dhcpd.conf
and add 'option root-path "192.168.X.Y:/srv/tftp/rootfs";'

Signed-off-by: Lukasz Majewski <lukma@denx.de>

show more ...


# 4ac5df4b 03-Jul-2018 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-sunxi


# 6c88079e 02-Jul-2018 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-spi


# fb77a9e3 28-Jun-2018 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-spi


# de766105 27-Jun-2018 Tom Rini <trini@konsulko.com>

Merge git://git.denx.de/u-boot-imx


# 5ca614ca 20-May-2018 Lukasz Majewski <lukma@denx.de>

board: Adjust K+P script to run misc (per board) adjustments

This change gives the opportunity to adjust Linux command line for the
imx53 device with some legacy data.

Signed-of

board: Adjust K+P script to run misc (per board) adjustments

This change gives the opportunity to adjust Linux command line for the
imx53 device with some legacy data.

Signed-off-by: Lukasz Majewski <lukma@denx.de>

show more ...


# e8f80a5a 09-May-2018 Tom Rini <trini@konsulko.com>

Merge git://git.denx.de/u-boot-sunxi


# 83d290c5 06-May-2018 Tom Rini <trini@konsulko.com>

SPDX: Convert all of our single license tags to Linux Kernel style

When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borro

SPDX: Convert all of our single license tags to Linux Kernel style

When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from. So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry. Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have a single declared
license in the tag as both the before and after are identical in tag
contents. There's also a few places where I found we did not have a tag
and have introduced one.

Signed-off-by: Tom Rini <trini@konsulko.com>

show more ...


# 5512f5cc 24-Apr-2018 Tom Rini <trini@konsulko.com>

Merge git://git.denx.de/u-boot-video


# ebca902a 15-Apr-2018 Tom Rini <trini@konsulko.com>

Merge git://git.denx.de/u-boot-imx

Signed-off-by: Tom Rini <trini@konsulko.com>


# b04ff9bf 05-Apr-2018 Lukasz Majewski <lukma@denx.de>

boot: script: The boot.scr file for K+P's boards

By using this file one can avoid cluttering <board>.h file with u-boot
HUSH commands necessary for booting target device.

With s

boot: script: The boot.scr file for K+P's boards

By using this file one can avoid cluttering <board>.h file with u-boot
HUSH commands necessary for booting target device.

With such approach the commands are stored only in one place and can be
reused if needed.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Stefano Babic <sbabic@denx.de>

show more ...