summaryrefslogtreecommitdiffstats
path: root/meta-netboot
AgeCommit message (Expand)AuthorFilesLines
2019-12-03Extend intel-corei7-64 machine to support virtual targetsPaul Barker1-1/+1
2019-10-31Replace tab by 4 spacesRonan Le Martret1-17/+17
2019-10-23meta-netboot: don't use 'ip' command to detect boot interfaceStephane Desneux1-3/+29
2019-09-05Update AGL netboot documentationRonan Le Martret1-1/+10
2019-07-12netboot: adjust SMACK label for /etc/resolv.confStephane Desneux1-0/+1
2019-07-07netboot: systemd must mount /tmp and /runStephane Desneux1-2/+8
2019-06-21Add support for nbd protocol v3Ronan Le Martret3-3/+18
2019-04-04Upgrade to thudScott Murray1-0/+2
2018-08-01Remove porter reference from meta-aglRonan Le Martret2-64/+2
2018-04-04Adapt repository priorities in preparation of the profilesJan-Simon Möller1-1/+1
2018-02-22Hotfix for db410 on rockoJan-Simon Möller1-1/+4
2018-01-23Change image type to wic.vmdkChanghyeok Bae1-1/+1
2018-01-23netboot.bbclass: Remove image_types_uboot inheritanceChanghyeok Bae1-3/+0
2017-11-30meta-netboot: enhance reference uboot config for R-Car Gen3Stephane Desneux1-22/+42
2017-11-22Rework Linux Kernel fragment applicationsTom Rini3-8/+0
2017-10-14meta-agl-bsp: Re-merge image-vm/image.bbclass overlaysTom Rini1-1/+1
2017-07-12netboot: fix dependency loop for qemu buildMatt Ranostay1-1/+1
2017-06-28Fix rpi-sdimg after IMAGE_FSTYPE being enforced in poky-agl.confJan-Simon Möller2-3/+3
2017-06-28Enforce same IMAGE_FSTYPES across all boards for AGLJan-Simon Möller1-4/+2
2017-06-23meta-agl-netboot: increase IMAGE_ROOTFS_EXTRA_SPACEStephane Desneux2-2/+3
2017-06-14README.renesas-gen3: add uboot env to setup ethernetStephane Desneux1-0/+2
2017-03-10meta-netboot: unify instructions to setup uboot for Rcar-Gen3 M3/H3 boardsStephane Desneux1-49/+53
2017-01-26Move feature code into the meta recipesRonan1-0/+5
2017-01-02Fix to get netboot activated also for renesas gen3Romain Forlot5-1/+90
2016-09-26Fix meta-netboot build on Minnowboard Max after migration to KrogothStephane Desneux1-2/+3
2016-09-14Set INITRAMFS_IMAGE instead of appending to itAnton Gerasimov1-1/+1
2016-06-19meta-netboot: generate appropriate resolv.conf from /proc/net/pnpStephane Desneux1-2/+5
2016-06-19meta-netboot: enable NBD and Ramdisk support in kernel configStephane Desneux3-0/+8
2016-06-10meta-netboot: mount remote filesystem with 'noatime' optionStephane Desneux1-1/+1
2016-05-29add layer meta-netboot to enable network boot over NBD (Network Block Device)Stephane Desneux9-0/+335
class="si">${FILE} elif [ ! -f "$FILE" ]; then echo "SDK file not found: $FILE" exit 1 else DIR=$(cd $(dirname $FILE); pwd) FILE=$(basename $FILE) SDK_FILE=${DIR}/${FILE} fi if [ "$ARCH" = "" ]; then echo "Option -a|--arch must be set" usage fi # Check that ARCH name matching SDK tarball filename echo "$FILE" | grep "$ARCH" > /dev/null 2>&1 if [ "$?" = "1" ]; then echo "ARCH and provided filename doesn't match !" exit 1 fi cd ${XDT_SDK} || exit 1 # Cleanup trap "cleanExit" 0 1 2 15 cleanExit () { if ($do_cleanup); then [[ -f ${SDK_FILE} ]] && rm -f ${SDK_FILE} fi } # Get SDK installer if [ ! -f "${SDK_FILE}" ]; then do_cleanup=true wget "$SDK_BASEURL/$FILE" -O "${SDK_FILE}" || exit 1 fi # Retreive default install dir to extract version offset=$(grep -na -m1 "^MARKER:$" "${SDK_FILE}" | cut -d':' -f1) eval $(head -n $offset "${SDK_FILE}" | grep ^DEFAULT_INSTALL_DIR= ) VERSION=$(basename $DEFAULT_INSTALL_DIR) [ "$PROFILE" = "" ] && { echo "PROFILE is not set"; exit 1; } [ "$VERSION" = "" ] && { echo "VERSION is not set"; exit 1; } DESTDIR=${XDT_SDK}/${PROFILE}/${VERSION}/${ARCH} # Cleanup previous install rm -rf ${DESTDIR} && mkdir -p ${DESTDIR} || exit 1 # Install sdk chmod +x ${SDK_FILE} ${SDK_FILE} -y -d ${DESTDIR}