-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Das U-Boot fork to image builder #52
Open
chroco
wants to merge
1
commit into
master
Choose a base branch
from
feature/uboot/boot_oresat_boards
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# Kconfig .old | ||
*.old | ||
|
||
# Repos | ||
BeagleBoard-DeviceTrees/ | ||
image-builder/ | ||
u-boot/ | ||
|
||
# Python | ||
__pycache__/ | ||
|
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,6 @@ | ||
[submodule "uboot/u-boot"] | ||
path = image_builder/u-boot | ||
url = https://github.com/oresat/u-boot | ||
[submodule "image_builder/image-builder"] | ||
path = image_builder/image-builder | ||
url = https://github.com/RobertCNelson/omap-image-builder.git |
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,42 @@ | ||
UBOOT_REPO= u-boot | ||
IMAGE_BUILDER_REPO= image-builder | ||
DEVICE_TREES= ../device_trees | ||
CONFIG= am335x_oresat.config | ||
list= c3 cfc dev dxwifi generic gps star-tracker | ||
|
||
.PHONY: all uboot device_trees test clean board $(list) | ||
|
||
ARCH= $(shell uname -m) | ||
ifeq ($(ARCH), armv7l) | ||
FLAGS= | ||
else | ||
FLAGS= ARCH=arm CROSS_COMPILE=arm-none-eabi- | ||
endif | ||
|
||
all: uboot | ||
./build_images.sh $(board) | ||
|
||
uboot: test device_trees | ||
@if [ ! -f "$(UBOOT_REPO)/MLO" ] || \ | ||
[ ! -f "$(UBOOT_REPO)/u-boot-dtb.img" ]; then \ | ||
make -C u-boot mrproper; \ | ||
KCONFIG_CONFIG=../$(CONFIG) $(FLAGS) make -C $(UBOOT_REPO); \ | ||
fi | ||
|
||
device_trees: | ||
make -C $(DEVICE_TREES) | ||
|
||
test: | ||
@if [ -z "$(wildcard $(UBOOT_REPO)/*)" ] || \ | ||
[ -z "$(wildcard $(IMAGE_BUILDER_REPO)/*)" ]; then \ | ||
echo "Hint: git submodule update --init"; \ | ||
exit 1; \ | ||
fi | ||
|
||
clean: | ||
rm -f $(IMAGE_BUILDER_REPO)/configs/oresat* | ||
rm -f $(IMAGE_BUILDER_REPO)/target/chroot/oresat* | ||
rm -f $(IMAGE_BUILDER_REPO)/tools/setup_sdcard.sh.rej | ||
rm -f $(IMAGE_BUILDER_REPO)/tools/hwpack/extlinux.conf | ||
make clean -C $(UBOOT_REPO) | ||
make clean -C $(DEVICE_TREES) |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should utilize the features of
make
better.make
is more than a shellscript with names, it is its own whole tool with its own language and rules. The general mindset is to try to write rules where the left hand side (the targets) are the files you want to produce and the right hand side (the prerequisites) are the files they are produced from. I'll recommend giving themake
manual a browse - it's well written and in-depth.Take for example the
u-boot
rule below. In the rule recipe it uses the shell to test for the existence of files, but that's the prime function ofmake
rules.make
will build targets if they don't exist (and are older than the prerequisites) for you. The magic ofmake
is if most of your rule targets are files it will selectively only build the files that need to be built. For theu-boot
rule specifically the outputs are the filesMLO
andu-boot-dtb.img
so those should go in the target place. Because this rule produces two targets it needs the specialized group target as opposed to the default independent targets. For prerequisitesu-boot
specifically wants to input the configam335x_oresat.config
because we'll likely change that during normal development. It also technically it depends on the whole u-boot project but we shouldn't be touching those files outside of updating the submodule so it can suffice to ensure it's initialized. The rule becomes:Note that u-boot doesn't actually depend on
device_trees
any more and themrproper
call should be done inclean
to avoid unnecessary u-boot rebuilding.The next rule where
make
should be used for checking files instead of the shell istest
. This one is a little more awkward because a glaring hole ofmake
in my opinion is there's no good way to check if a directory is empty. The recommended way is to pick a sentinel file to check and for submodules a good pick is the readme. Additionally themake
function$(error)
should be used for reporting errors. Sotest
becomes:Note that these are independent instead of group targets so the u-boot related rule can depend only on the u-boot repo and not care about the image-builder repo and vice versa. Also
$(dir $@)
to get the directory name of the current target.Finally the variable
$(list)
isn't used, but I think I can see what you were trying to go for, I think you were missing$@
which expands to the name of the current target:Now you can say
make c3
instead ofmake board=c3
. Note that this rule is missing prerequisites that should be there.Putting it all together the whole makefile should look something like:
Ideally the
device_trees
target should be file-based as well but it would be much easier to do with changes to that makefile first so I've left this as is. Note also:.PHONY
has only real rules in themclean
cleans only the things that this makefile generates (it's no longer producingsetup_sdcard.sh.rej
)|
to indicate that we only care about the existence of the following prerequisites, not update time. These are known as order-only prerequisites. Good for directory and submodule related stuff.?=
to indicate an input parameter. It's reasonable that we during development might want to test with a differently named config file and so conditional assignment is the conventional way to indicate itimage-builder
,device_trees
, oru-boot
paths to be configurable, and it's a bit more readable then to bake them into the use locations directly. Picking which things to turn into variables is a bit of a matter of taste but too much use of variables as simple renames can make things harder to read. If we do want them configurable then they should be?=
conditionally assigned.c3
if no board has been specified.As more of
build_images.sh
gets moved into this makefile we can then be much more selective about which things get built.