diff options
author | Matei Valeanu <Matei.Valeanu@enea.com> | 2017-04-06 12:34:05 +0200 |
---|---|---|
committer | Matei Valeanu <Matei.Valeanu@enea.com> | 2017-04-06 15:48:03 +0200 |
commit | eb8fbde87578e3853ffd23e403fd46bac6039cd0 (patch) | |
tree | 0236bb6253cd373512294165547e6e525589a0e9 /build/docker/Makefile | |
parent | 86eaf30b6b76d6ca1acbea243d2fdf100df43388 (diff) |
build/install: Add USB boot option
Use isohybrid to add MBR for booting via BIOS
from USB flash drives
Also, Makefile "$(wildcard ubuntu-builder/*)" does not expand
to what is expected (does not include ubuntu-builder/Dockerfile),
as it uses a previous cached value.
Check this link for an explanation:
http://stackoverflow.com/questions/41470676/makefile-variable-expansion-with-wildcard-when-rule-creates-new-file
JIRA: FUEL-236
Change-Id: I9c6521a382917822ce930ddf76391c5f3c3a9cb7
Signed-off-by: Matei Valeanu <Matei.Valeanu@enea.com>
Diffstat (limited to 'build/docker/Makefile')
-rw-r--r-- | build/docker/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/docker/Makefile b/build/docker/Makefile index 783881e8d..cdf4a359c 100644 --- a/build/docker/Makefile +++ b/build/docker/Makefile @@ -74,7 +74,7 @@ deepclean: clean clean-cache # - ubuntu-builder Dockerfile (includes eventual proxy env vars), runcontext; # - The contents of this Makefile .cacheid: .dockercfg - sha1sum Makefile runcontext $(wildcard ubuntu-builder/*) > .cachedata + sha1sum Makefile runcontext ubuntu-builder/* > .cachedata cat .cachedata | $(CACHETOOL) getid > .cacheid # Clean local data related to caching - called prior to ordinary build |