This email list is read-only. Emails sent to this list will be discarded
----------------------------------
debian/changelog | 4 ++--
default_config/defaults.cfg | 3 +++
libs/Platform.py | 2 ++
3 files changed, 7 insertions(+), 2 deletions(-)
New commits:
commit 20922ccd930f9a14c52f41db5aa70311b974c635
Author: Prajwal Mohan <[EMAIL PROTECTED]>
Date: Mon Jul 28 13:16:54 2008 -0700
* Adding Nand kernel cmd line
Diff in this email is a maximum of 400 lines.
diff --git a/debian/changelog b/debian/changelog
index d1c1fad..42ea9eb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -69,9 +69,9 @@ moblin-image-creator (0.45) UNRELEASED; urgency=low
initramfs script
* Releasing 0.45 version
* Starting new version
-
+ * Adding Nand kernel cmd line
- -- Prajwal Mohan <[EMAIL PROTECTED]> Thu, 17 Jul 2008 09:39:45 -0700
+ -- Prajwal Mohan <[EMAIL PROTECTED]> Mon, 28 Jul 2008 13:16:26 -0700
moblin-image-creator (0.44) gaston; urgency=low
diff --git a/default_config/defaults.cfg b/default_config/defaults.cfg
index 1130fe5..7cf684a 100644
--- a/default_config/defaults.cfg
+++ b/default_config/defaults.cfg
@@ -52,6 +52,9 @@ usb_kernel_cmdline = initrd=initrd.img boot=usb
# Options for the kernel that will be booted from the CD drive
cd_kernel_cmdline = initrd=initrd.img boot=cd
+# Options for the kernel that will be booted from NAND
+nand_kernel_cmdline = ro boot=nand legfree_x86=true single console=ttyS0
earlyprintk=mrst
+
# Architecture to use for creating the rootstraps
architecture=lpia
diff --git a/libs/Platform.py b/libs/Platform.py
index d74c386..cffa677 100755
--- a/libs/Platform.py
+++ b/libs/Platform.py
@@ -87,6 +87,7 @@ class Platform(object):
self.usb_kernel_cmdline = mic_cfg.config.get(section,
"usb_kernel_cmdline")
self.hd_kernel_cmdline = mic_cfg.config.get(section,
"hd_kernel_cmdline")
self.cd_kernel_cmdline = mic_cfg.config.get(section,
"cd_kernel_cmdline")
+ self.nand_kernel_cmdline = mic_cfg.config.get(section,
"nand_kernel_cmdline")
# Architecture
self.architecture = mic_cfg.config.get(section, "architecture") or
"i386"
# Package Manager
@@ -293,6 +294,7 @@ releasever=8
('random', 1, 8, (0666 | stat.S_IFCHR)),
('urandom', 1, 9, (0444 | stat.S_IFCHR)),
('zero', 1, 5, (0666 | stat.S_IFCHR)),
+ ('ptmx', 5, 2, (0666 | stat.S_IFCHR)),
]
for device_name, major, minor, mode in devices:
device_path = os.path.join(chroot_dir, 'dev', device_name)
_______________________________________________
Commits mailing list
[email protected]
https://www.moblin.org/mailman/listinfo/commits