- Small step forward Linux boots and almost works...

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@795 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman
2003-04-24 06:25:08 +00:00
parent 8ca8d7665d
commit 5899fd82aa
17 changed files with 3024 additions and 22 deletions

View File

@@ -113,14 +113,13 @@ void smp_write_processors(struct mp_config_table *mc,
unsigned long cpu_flag;
if(initial_apicid[i]==-1)
continue;
cpu_flag = MPC_CPU_ENABLED
cpu_flag = MPC_CPU_ENABLED;
if (processor_map[i] & CPU_BOOTPROCESSOR) {
cpu_flag |= MPC_CPU_BOOTPROCESSOR;
}
smp_write_processor(mc, cpu_apicid, apic_version,
cpu_flag, cpu_features, cpu_feature_flags
);
}
}