summaryrefslogtreecommitdiff
path: root/build-essential/busybox.bst
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade build-essential to the baserock new usr merge approach.Tristan Van Berkom2017-02-221-0/+1
| | | | | | | | | This required making sure that fhs-dirs is depended on by anything which would stage on top of it, as the directory symlinks must come first. In this commit the dependencies are listed explicitly, probably there is a way to do this without being as wordy.
* Place /tools at the end of PATH for the final stage3 builds.Tristan Van Berkom2017-02-161-1/+1
| | | | | | | This is because otherwise we end up using the sysrooted /tools/sbin/ldconfig, causing the gcc build to fail as it does not find libz.so which is otherwise properly located if /sbin/ldconfig is used.
* Files in final stage build-essential need /tools/sbin in PATHTristan Van Berkom2017-02-141-1/+1
| | | | | Because the GNOME sdk is no longer there, and ldconfig from stage2 is in /tools/sbin.
* Manual conversion of Baserock's build-essential stratumTristan Van Berkom2017-02-031-0/+103
This huge commit is a manual conversion, notes on what was needed: o project.conf defines the arch specific stuff which was previously hardcoded into YBD, so the stage1 target and target etc are all defined by the build-essential project.conf o Direct and easy changes for git source representation o Added stage1.bst & stage2.bst "stacks", everything built in stage2 build-depends on stage1.bst, and the final build-essential products build-depend on stage2.bst (note build-depend means to depend _only_ for building, not propagated forward). o Instead of using host tools we build on the GNOME flatpak sdk/platform bundles o Some build-essential morph files use $(dirname $(pwd)) for a sysroot, which is weird, it means the morph files rely on building at one directory below the slash sysroot - in buildstream we build in /buildstream/build which is two - had to replace these with $(dirname $(dirname $(pwd))) instead o Remove the devices sections from the fhs-dirs elements, not allowed to create static device nodes in buildstream.