Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
68bfdd23
Commit
68bfdd23
authored
13 years ago
by
Alessandro Rubini
Browse files
Options
Downloads
Patches
Plain Diff
build: updated buildroot compilation
parent
1450aad7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/scripts/wrs_build_buildroot
+9
-26
9 additions, 26 deletions
build/scripts/wrs_build_buildroot
build/scripts/wrs_functions
+3
-3
3 additions, 3 deletions
build/scripts/wrs_functions
with
12 additions
and
29 deletions
build/scripts/wrs_build_buildroot
+
9
−
26
View file @
68bfdd23
...
...
@@ -11,7 +11,7 @@ fi
wrs_check_vars WRS_OUTPUT_DIR WRS_DOWNLOAD_DIR
wrs_echo
"--- Buildroot compiler and filesystem"
zipname
=
"buildroot-20
09
.11.tar.bz2"
zipname
=
"buildroot-20
11
.11.tar.bz2"
wrs_download
$zipname
mkdir
-p
$WRS_OUTPUT_DIR
/build
||
wrs_die
"mkdir build"
...
...
@@ -19,7 +19,7 @@ mkdir -p $WRS_OUTPUT_DIR/images || wrs_die "mkdir images"
# go to the build dir and compile it, using our configuration
cd
$WRS_OUTPUT_DIR
/build
dirname
=
"buildroot-20
09
.11"
dirname
=
"buildroot-20
11
.11"
wrs_echo
"Uncompressing buildroot"
rm
-rf
$dirname
tar
xjf
${
WRS_DOWNLOAD_DIR
}
/
$zipname
||
wrs_die
"untar
$zipname
"
...
...
@@ -31,7 +31,7 @@ if [ "x$WRS_BUILDROOT_CONFIG" != "x" ]; then
if
[
-f
$WRS_BUILDROOT_CONFIG
]
;
then
CFG
=
$WRS_BUILDROOT_CONFIG
else
wrs_warn
"WRS_BUILDROOT_CONFIG is not a regular
nam
e: ignoring it"
wrs_warn
"WRS_BUILDROOT_CONFIG is not a regular
fil
e: ignoring it"
sleep
3
fi
fi
...
...
@@ -73,35 +73,18 @@ if [ "x$CROSS_COMPILE" != "x" ]; then
fi
# re-digest the config we built
wrs_echo
"Reconfiguring buildroot"
make oldconfig
||
wrs_die
"buildroot config"
buildrootdir
=
$(
/bin/pwd
)
### currently, we get the packages from a local checkout or ohwr remote repo
mkdir
-p
$WRS_DOWNLOAD_DIR
/buildroot-pkg
||
die
"mkdir within downloads"
cd
$WRS_DOWNLOAD_DIR
/buildroot-pkg
# buildroot wants its own guest source packages to be within its own dir..
# so "cd" to the place we saved, and copy stuff here as well
# the download dir in the config file is already set to ../../downloads
# However, to be safe, make a symlink for its default place, in case
# a custom config file is used
cd
$buildrootdir
mkdir
dl
if
ln
$WRS_DOWNLOAD_DIR
/buildroot-pkg/
*
dl 2> /dev/null
;
then
wrs_echo
"Hardlinked packages from downloads to build place"
else
if
cp
-a
$WRS_DOWNLOAD_DIR
/buildroot-pkg/
*
dl
;
then
wrs_echo
"Copied packages from downloads to build place"
else
wrs_echo
"No buildroot packages, it will download them"
fi
fi
test
-d
dl
||
ln
-sf
$WRS_DOWNLOAD_DIR
dl
# We don't want CC to be pre-set at this point (some of us do :)
unset
CC
wrs_echo
"Compiling buildroot"
make
||
wrs_die
"buildroot compilation"
# finally, copy what it downloaded to the local place, for next time
mkdir
-p
$WRS_DOWNLOAD_DIR
/buildroot-pkg
cp
-a
$buildrootdir
/dl/
*
tar
*
$WRS_DOWNLOAD_DIR
/buildroot-pkg
# the previous command may fail, if the files are already linked. so "true"
true
This diff is collapsed.
Click to expand it.
build/scripts/wrs_functions
+
3
−
3
View file @
68bfdd23
...
...
@@ -101,9 +101,9 @@ function wrs_unset_config {
# We'll need to set CROSS_COMPILE to the buildroot one, if unset
function wrs_default_compiler {
dirname
=$WRS_OUTPUT_DIR/build/buildroot-20
09
.11/output/st
aging/usr/bin
if [ -e $
dirname
/arm-linux-gcc ]; then
wrs_setenv_default CROSS_COMPILE $
dirname
/arm-linux-
hostdir
=$WRS_OUTPUT_DIR/build/buildroot-20
11
.11/output/
ho
st
if [ -e $
hostdir/usr/bin
/arm-linux-gcc ]; then
wrs_setenv_default CROSS_COMPILE $
hostdir/usr/bin
/arm-linux-
fi
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment