Change the name of the IRQ symbol in the CML2 configuration so that the DRIVER_... symbol name structure matches the name structure of the kernel source hierarchy.

This commit is contained in:
Russel Winder
2009-08-28 09:55:20 +01:00
parent 34a804eb4d
commit 591cac56cf
2 changed files with 5 additions and 5 deletions

View File

@@ -110,7 +110,7 @@ else :
subarch = items[2].lower()
if items[0] == 'DRIVER':
# Add data to the environment about which driver paths to include in the build.
configuration.env.Append(driverList = [('irq' if items[1] == 'IRQCTRL' else items[1].lower()) + '/' + items[2].lower()])
configuration.env.Append(driverList = [items[1].lower() + '/' + items[2].lower()])
configuration.Define('__ARCH__', arch)
configuration.Define('__PLATFORM__', platform)
configuration.Define('__SUBARCH__', subarch)