summaryrefslogtreecommitdiffstats
path: root/kernel/include/linux/crc32c.h
blob: bd8b44d96bdcbd38e764ddfa7b8d6cbed43ebe5d (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _LINUX_CRC32C_H
#define _LINUX_CRC32C_H

#include <linux/types.h>

extern u32 crc32c(u32 crc, const void *address, unsigned int length);

/* This macro exists for backwards-compatibility. */
#define crc32c_le crc32c

#endif	/* _LINUX_CRC32C_H */
"-----------------------------------------------------------" echo # set OPNFV_ARTIFACT_VERSION if [[ "$JOB_NAME" =~ "merge" ]]; then echo "Building Fuel ISO for a merged change" export OPNFV_ARTIFACT_VERSION="gerrit-$GERRIT_CHANGE_NUMBER" echo "Not supported" exit 1 else export OPNFV_ARTIFACT_VERSION=$(date -u +"%Y-%m-%d_%H-%M-%S") fi NOCACHE_PATTERN="verify: no-cache" if [[ "$JOB_NAME" =~ "verify" && "$GERRIT_CHANGE_COMMIT_MESSAGE" =~ "$NOCACHE_PATTERN" ]]; then echo "The cache will not be used for this build!" NOCACHE_ARG="-f P" fi NOCACHE_ARG=${NOCACHE_ARG:-} # start the build cd $WORKSPACE/ci ./build.sh $BUILD_DIRECTORY # list the build artifacts ls -al $BUILD_DIRECTORY # save information regarding artifact into file ( echo "OPNFV_ARTIFACT_VERSION=$OPNFV_ARTIFACT_VERSION" echo "OPNFV_GIT_URL=$(git config --get remote.origin.url)" echo "OPNFV_GIT_SHA1=$(git rev-parse HEAD)" echo "OPNFV_ARTIFACT_URL=$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.iso" echo "OPNFV_BUILD_URL=$BUILD_URL" ) > $WORKSPACE/opnfv.properties echo echo "--------------------------------------------------------" echo "Done!"