diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-02-25 22:57:36 +0000 |
---|---|---|
committer | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-02-25 22:57:36 +0000 |
commit | 2c8312853e3613d00057dfff29d18c761b8d4fd5 (patch) | |
tree | 702884874f80e118871e994da3eeb1888d7f0b24 /conf/machine | |
parent | a82af50b09838e2e7b4229c520c3248066140e5d (diff) |
mpc83x3e-rdb machines: Use ?= for virtual/kernel so it can be user-configured.
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/mpc8313e-rdb.conf | 4 | ||||
-rw-r--r-- | conf/machine/mpc8323e-rdb.conf | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/conf/machine/mpc8313e-rdb.conf b/conf/machine/mpc8313e-rdb.conf index a43f621406..31f13b00b6 100644 --- a/conf/machine/mpc8313e-rdb.conf +++ b/conf/machine/mpc8313e-rdb.conf @@ -5,8 +5,8 @@ TARGET_ARCH = "powerpc" PACKAGE_EXTRA_ARCHS = "all ${MACHINE} ppc ppce300c3" -PREFERRED_PROVIDER_virtual/kernel = "linux" -PREFERRED_VERSION_u-boot = "git" +PREFERRED_PROVIDER_virtual/kernel ?= "linux" +PREFERRED_VERSION_u-boot ?= "git" MACHINE_FEATURES = "kernel26 usbhost ext2" diff --git a/conf/machine/mpc8323e-rdb.conf b/conf/machine/mpc8323e-rdb.conf index 38f3b1930c..db1a7ccf16 100644 --- a/conf/machine/mpc8323e-rdb.conf +++ b/conf/machine/mpc8323e-rdb.conf @@ -6,7 +6,7 @@ TARGET_ARCH = "powerpc" TARGET_FPU ?= "soft" PACKAGE_EXTRA_ARCHS = "all ${MACHINE} ppc ppce300c2" -PREFERRED_PROVIDER_virtual/kernel = "linux" +PREFERRED_PROVIDER_virtual/kernel ?= "linux" MACHINE_FEATURES = "kernel26 usbhost pci ext2 uboot" |