This patch series factors out all configuration details into a separate configuration file and get rid of multiple hard-coded kernel command lines in boot.S. The series applies after Peter Maydell's latest patch series, which in turn applies to the following tree: git://linux-arm.org/boot-wrapper.git kvm-smp Changes since v2: - Include lost define flags Changes since v1: - Nits from review - Factor out boot.S changes into separate patch --- Christoffer Dall (2): Makefile: Introduced super-simple config file boot.S: Factor out kernel cmd-line from boot-loader .gitignore | 1 + Makefile | 38 +++----------------- boot.S | 24 +------------ config-default.mk | 100 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 108 insertions(+), 55 deletions(-) create mode 100644 config-default.mk --