gem5: aarch64 graphic mode works

build: allow passing extra kernel config fragment with -c.
Old -c was renamed to -C, and old -C to -f.
This commit is contained in:
Ciro Santilli
2018-05-19 09:38:49 +01:00
parent d9df5f97fd
commit de9223c03d
4 changed files with 73 additions and 26 deletions

View File

@@ -12,13 +12,18 @@
|`-a` |`ARCH` |Build for architecture `ARCH`.
|`-B` |`BR2_CONFIG` |Add a single Buildroot option to the current build.
Example: `-B 'BR2_TARGET_ROOTFS_EXT2_SIZE="512M"'`
|`-b` |`BR2_FILE` |Also use the given Buildroot configuration fragment file.
|`-b` |`BR2_CONFIG_FILE` |Also use the given Buildroot configuration fragment file.
Pass multiple times to use multiple fragment files.
|`-C` | |Skip the Buildroot configuration. Saves a few seconds,
but requires you to know what you are doing :-)
|`-c` |`CONFIG_SOMETHING` |Also use the given Linux kernel configuration, example:
|`-C` |`CONFIG_SOMETHING` |Also use the given Linux kernel configuration, example:
`./build -c 'CONFIG_FORTIFY_SOURCE=y'`
Can be used multiple times for multiple configs.
These options take precedence over `-c`.
|`-c` |`KERNEL_CONFIG_FILE` |Also use the given kernel configuration fragment file.
Pass multiple times to use multiple fragment files.
These options take precedence over `-K`.
|`-f` | |Skip the Buildroot configuration. Saves a few seconds,
but requires you to know what you are doing :-)
Mnemonic: `fast`.
|`-g` | |Enable gem5 build or force its rebuild.
|`-h` | |Show this help message.
|`-I` | |Enable initramfs for the current build.