diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index 461370263f77d50db726c7c1ff67278f6263ac5b..e70a4ad2cef4240d733f52ef3aabe8961eafc925 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -1412,6 +1412,7 @@ function install_bootstrap_full(&$install_state) {
   // Clear the module list that was overriden earlier in the process.
   // This will allow all freshly installed modules to be loaded.
   module_list_reset();
+  // @todo Figure out how best to handle the Kernel constructor parameters.
   $kernel = new DrupalKernel('prod', FALSE);
   $kernel->boot();
   drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
diff --git a/core/lib/Drupal/Core/DrupalKernel.php b/core/lib/Drupal/Core/DrupalKernel.php
index 6b201877afed73a315b80bf89b6b27dde6c44d52..6737310437836cd0bcac083d1391d5939589a005 100644
--- a/core/lib/Drupal/Core/DrupalKernel.php
+++ b/core/lib/Drupal/Core/DrupalKernel.php
@@ -23,9 +23,8 @@ public function registerBundles() {
       new CoreBundle(),
     );
 
-    // TODO: Somehow remove the necessity of calling system_list() to find out which
-    // bundles exist.
-
+    // TODO: Remove the necessity of calling system_list() to find out which
+    // bundles exist. See http://drupal.org/node/1331486
     $modules = array_keys(system_list('module_enabled'));
     foreach ($modules as $module) {
       $camelized = ContainerBuilder::camelize($module);
diff --git a/index.php b/index.php
index a793cc8659e39f3d208d98e6cc81c6ce8d4f53ff..38177ab2b5bae45cde43779d7f4d36dd6522c0f1 100644
--- a/index.php
+++ b/index.php
@@ -27,6 +27,7 @@
 require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc';
 drupal_bootstrap(DRUPAL_BOOTSTRAP_CODE);
 
+// @todo Figure out how best to handle the Kernel constructor parameters.
 $kernel = new DrupalKernel('prod', FALSE);
 
 // Create a request object from the HTTPFoundation.