Changeset 279
- Timestamp:
- Apr 22, 2010 8:16:02 PM (3 years ago)
- Location:
- buildrom-devel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
buildrom-devel/Config.in
r181 r279 68 68 choice 69 69 prompt "coreboot version" 70 default COREBOOT_V2 70 default PAYLOAD_ONLY 71 72 config PAYLOAD_ONLY 73 bool "payload only" 74 help 75 Coreboot is a lot easier to build for v4. Copy the payload from 76 deploy/ to coreboot/svn/payload.elf and build it. 71 77 72 78 config COREBOOT_V2 -
buildrom-devel/Makefile
r276 r279 108 108 ifeq ($(CONFIG_COREBOOT_V2),y) 109 109 rom: payload $(COREBOOT-y) 110 else 110 endif 111 112 ifeq ($(CONFIG_PAYLOAD_ONLY),y) 113 rom: payload 114 @ echo "" 115 @ echo "CONFIG_PAYLOAD_ONLY was set" 116 @ echo "" 117 @ echo "1. cp deploy/your_payload.elf coreboot/svn/payload.elf" 118 @ echo "2. configure the payload to be payload.elf and build it." 119 @ echo "" 120 endif 121 122 ifeq ($(CONFIG_COREBOOT_V3),y) 111 123 112 124 # If compressing the payload in v3, parse the elf and tell lar to compress it. … … 155 167 ifeq ($(CONFIG_COREBOOT_V2),y) 156 168 INCMK += $(PACKAGE_DIR)/coreboot-v2/coreboot-v2.mk 157 else 169 endif 170 171 ifeq ($(CONFIG_COREBOOT_V3),y) 158 172 INCMK += $(PACKAGE_DIR)/coreboot-v3/coreboot-v3.mk 159 173 endif
Note: See TracChangeset
for help on using the changeset viewer.
