From d85382e41efbe3f3f9012a08851f93bb4919de65 Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Wed, 1 Feb 2017 20:37:29 +0900 Subject: Manual conversion of Baserock's build-essential stratum 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. --- build-essential/stage2-fhs-dirs.bst | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 build-essential/stage2-fhs-dirs.bst (limited to 'build-essential/stage2-fhs-dirs.bst') diff --git a/build-essential/stage2-fhs-dirs.bst b/build-essential/stage2-fhs-dirs.bst new file mode 100644 index 00000000..80ce42f4 --- /dev/null +++ b/build-essential/stage2-fhs-dirs.bst @@ -0,0 +1,31 @@ +kind: manual + +sources: +- kind: git + url: baserock:baserock/fhs-dirs + track: master + ref: 1218cbd38a4f4e9da75af6f7fae946ca92666afb + +depends: +- filename: build-essential/stage1.bst + type: build + +variables: + prefix: /tools + +environment: + PATH: /tools/bin:/usr/bin:/bin:/usr/sbin:/sbin + +config: + install-commands: + - sh ./create-fhs-dirs "%{install-root}" + - rmdir "%{install-root}/bin" + - ln -s "%{prefix}/bin" "%{install-root}/bin" + - install -m 644 passwd "%{install-root}/etc/passwd" + - install -m 600 shadow "%{install-root}/etc/shadow" + - install -m 644 interfaces "%{install-root}/etc/network/interfaces" + - install -m 644 group "%{install-root}/etc/group" + - install -m 644 issue "%{install-root}/etc/issue" + - install -m 644 services "%{install-root}/etc/services" + - install -m 644 protocols "%{install-root}/etc/protocols" + - echo baserock > "%{install-root}/etc/hostname" -- cgit v1.2.1