-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[main] Update dependencies from 8 repositories (#66539)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8c97244
commit 731d936
Showing
10 changed files
with
391 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
__X86_CrossDir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | ||
__TIZEN_CROSSDIR="$__X86_CrossDir/tizen" | ||
|
||
if [[ -z "$ROOTFS_DIR" ]]; then | ||
echo "ROOTFS_DIR is not defined." | ||
exit 1; | ||
fi | ||
|
||
TIZEN_TMP_DIR=$ROOTFS_DIR/tizen_tmp | ||
mkdir -p $TIZEN_TMP_DIR | ||
|
||
# Download files | ||
echo ">>Start downloading files" | ||
VERBOSE=1 $__X86_CrossDir/tizen-fetch.sh $TIZEN_TMP_DIR | ||
echo "<<Finish downloading files" | ||
|
||
echo ">>Start constructing Tizen rootfs" | ||
TIZEN_RPM_FILES=`ls $TIZEN_TMP_DIR/*.rpm` | ||
cd $ROOTFS_DIR | ||
for f in $TIZEN_RPM_FILES; do | ||
rpm2cpio $f | cpio -idm --quiet | ||
done | ||
echo "<<Finish constructing Tizen rootfs" | ||
|
||
# Cleanup tmp | ||
rm -rf $TIZEN_TMP_DIR | ||
|
||
# Configure Tizen rootfs | ||
echo ">>Start configuring Tizen rootfs" | ||
ln -sfn asm-x86 ./usr/include/asm | ||
patch -p1 < $__TIZEN_CROSSDIR/tizen.patch | ||
echo "<<Finish configuring Tizen rootfs" |
Oops, something went wrong.