Changeset 229
- Timestamp:
- 09/22/08 22:56:04 (2 months ago)
- Location:
- buildrom-devel
- Files:
-
- 4 modified
-
config/platforms/Config.in (modified) (2 diffs)
-
config/platforms/platforms.conf (modified) (2 diffs)
-
packages/grub2/grub2.mk (modified) (1 diff)
-
packages/roms/roms.mk (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
buildrom-devel/config/platforms/Config.in
r186 r229 165 165 select PLATFORM 166 166 select PLATFORM_SUPPORT_64BIT 167 168 config PLATFORM_DBM690T 169 bool "AMD dbM690T" 170 depends on VENDOR_AMD 171 select PLATFORM 172 select PLATFORM_SUPPORT_64BIT 167 173 endchoice 168 174 … … 209 215 emulated platform in the AMD SimNow (TM) simulator 210 216 217 config AMD_R690_HEADLESS 218 bool "Build the R690 platform as headless (without VGA)" 219 depends on ADVANCED && PLATFORM_DBM690T 220 default n 221 help 222 Say 'y' here to build without the VGA BIOS for the 223 R690 chipset. This will result in no video graphics 224 for the platform. This is not likely what you want, 225 so you should say 'n' here unless you are absolutely 226 sure. 227 228 config AMD_R690_USE_VBIOS 229 bool 230 depends on !AMD_R690_HEADLESS 231 default y 232 233 config AMD_R690_CUSTOM_VBIOS 234 bool "Specify a custom location for the R690 video BIOS" 235 depends on AMD_R690_USE_VBIOS 236 help 237 Say 'y' here to specify a custom location for the R690 238 video BIOS file. Otherwise, it will be looked for in a 239 default location. 240 241 config AMD_R690_VBIOS 242 string "Location of the RS690 Video BIOS file" 243 depends on AMD_R690_CUSTOM_VBIOS 244 default "" 245 help 246 Specify the full pathname for your RS690 video BIOS file 247 211 248 endmenu -
buildrom-devel/config/platforms/platforms.conf
r199 r229 28 28 PLATFORM-$(CONFIG_PLATFORM_GA_2761GXDK) = ga-2761gxdk.conf 29 29 PLATFORM-$(CONFIG_PLATFORM_QEMU-X86) = qemu.conf 30 PLATFORM-$(CONFIG_PLATFORM_DBM690T) = dbm690t.conf 30 31 31 32 include $(CONFIG_DIR)/platforms/$(PLATFORM-y) … … 36 37 # For those platforms that have option roms, add the following line 37 38 #DEPENDS-$(MYPLATFORM) += roms 39 40 DEPENDS-$(CONFIG_PLATFORM_DBM690T) += roms -
buildrom-devel/packages/grub2/grub2.mk
r171 r229 23 23 configfile boot hexdump linux multiboot ext2 24 24 25 ifeq ($(CONFIG_PAYLOAD_GRUB2),y) 25 26 HAVE_RUBY:=$(call find-tool,ruby) 26 27 27 28 ifeq ($(HAVE_RUBY),n) 28 29 $(error To build GRUB2, you need to install 'ruby') 30 endif 29 31 endif 30 32 -
buildrom-devel/packages/roms/roms.mk
r182 r229 2 2 # here 3 3 4 OPTIONROM_TARGETS ?=4 OPTIONROM_TARGETS ?= 5 5 6 OPTIONROM-y = 6 OPTIONROMS-y = 7 OPTIONROMS-$(CONFIG_PLATFORM_DBM690T) += $(PACKAGE_DIR)/roms/amd_r690.mk 7 8 8 9 ifneq ($(OPTIONROMS-y),) 9 include $(OPTIONROM -y)10 include $(OPTIONROMS-y) 10 11 endif 11 12 … … 16 17 17 18 roms-clean: 18 ifneq ($(OPTIONROM_TARGETS),)19 @ rm -rf $(OPTIONROM_TARGETS)20 endif21 19 22 roms-distclean: roms-clean20 roms-distclean:
