diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-05-23 17:53:36 +0200 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.200> | 2016-05-29 10:21:30 +0000 |
commit | 56b1139ef2660535b112d0be4ddb2806f75298a8 (patch) | |
tree | 7e71661d2d9f9a407fe58da7e572f7cffa3f51f6 /meta-netboot/README.porter | |
parent | 04dad68c951f206bd100e4dd82f9a77475e81f9d (diff) |
add layer meta-netboot to enable network boot over NBD (Network Block Device)
To enable the build of network bootable images, the following line must be
added to conf/local.conf:
INHERIT += "netboot"
This layer contains recipes for the following components:
* busybox: activate the built-in NBD client
* initramfs-netboot: contains the init script started by the kernel,
responsible for mounting the remote root filesystem then pivoting and
exec'ing systemd
* initramfs-netboot-image: image to specify for building the initrd
More details are available in meta-netboot/README.
Bug-AGL: SPEC-175
Change-Id: Id2328dd9233d238cde77311e64e58344be244988
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'meta-netboot/README.porter')
-rw-r--r-- | meta-netboot/README.porter | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta-netboot/README.porter b/meta-netboot/README.porter new file mode 100644 index 000000000..7ab0803fb --- /dev/null +++ b/meta-netboot/README.porter @@ -0,0 +1,41 @@ +Below are the environment variables that can be set in the u-boot console to boot the porter board in various configurations + +################## Common options ##################### +# these options are common to all configurations: + +setenv 'bootkfile' 'uImage+dtb' +setenv 'bootkaddr' '0x40007fc0' + +setenv 'bootifile' 'initramfs-netboot-image-porter.ext4.gz.u-boot' +setenv 'bootiaddr' '0x50000000' + +setenv 'bootargs_console' 'console=ttySC6,38400 ignore_loglevel' +setenv 'bootargs_video' 'vmalloc=384M video=HDMI-A-1:1280x960-32@60' +setenv 'bootargs_extra' 'rw rootfstype=ext4 rootwait rootdelay=2' + +################ Boot on MMC (SDcard) ################# + +setenv 'bootargs_root' 'root=/dev/mmcblk0p1' +setenv 'bootmmc' '1:1' +setenv 'bootkload_sd' 'ext4load mmc ${bootmmc} ${bootkaddr} boot/${bootkfile}' +setenv 'bootcmd' 'setenv bootargs ${bootargs_console} ${bootargs_video} ${bootargs_root} ${bootargs_extra}; run bootkload_sd; bootm ${bootkaddr}' + +################ Boot on MMC (SDcard) with initrd ###### + +setenv 'bootargs_root' 'root=/dev/ram0 ramdisk_size=16384' +setenv 'bootmmc' '1:1' +setenv 'bootkload_sd' 'ext4load mmc ${bootmmc} ${bootkaddr} boot/${bootkfile}' +setenv 'bootiload_sd' 'ext4load mmc ${bootmmc} ${bootiaddr} boot/${bootifile}' +setenv 'bootcmd' 'setenv bootargs ${bootargs_console} ${bootargs_video} ${bootargs_root} ${bootargs_extra}; run bootkload_sd; run bootiload_sd; bootm ${bootkaddr} ${bootiaddr}' + +################ Netboot through TFTP+NBD ################## +# replace <IP> addresses by appropriate addresses + +setenv 'ipaddr' '<board_IP>' +setenv 'serverip' '<server_IP>' + +setenv 'bootargs_root' 'root=/dev/ram0 ramdisk_size=16384 ip=dhcp' +setenv 'bootkload_net' 'tftp ${bootkaddr} porter/${bootkfile}' +setenv 'bootiload_net' 'tftp ${bootiaddr} porter/${bootifile}' +setenv 'bootcmd' 'setenv bootargs ${bootargs_console} ${bootargs_video} ${bootargs_root} ${bootargs_extra} nbd.server=${serverip}; run bootkload_net; run bootiload_net; bootm ${bootkaddr} ${bootiaddr}' + |