diff mbox

rpi-firmware: Fixup config.txt

Message ID 1367312888-22216-1-git-send-email-maxime.hadjinlian@gmail.com
State Accepted
Headers show

Commit Message

Maxime Hadjinlian April 30, 2013, 9:08 a.m. UTC
The default name of the kernel binary for the RaspberryPi is kernel.img, it's
only a zImage kernel renamed.
Since Buildroot will build a zImage, the default config should use the zImage
name instead of forcing the user to rename a file.

This patch also remove the cmdline argument rootfstype. There is no point
forcing the user to use ext4 for its root partition.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/rpi-firmware/config.txt |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Peter Korsgaard May 2, 2013, 9:26 p.m. UTC | #1
>>>>> "Maxime" == Maxime Hadjinlian <maxime.hadjinlian@gmail.com> writes:

 Maxime> The default name of the kernel binary for the RaspberryPi is
 Maxime> kernel.img, it's only a zImage kernel renamed.  Since Buildroot
 Maxime> will build a zImage, the default config should use the zImage
 Maxime> name instead of forcing the user to rename a file.

 Maxime> This patch also remove the cmdline argument rootfstype. There
 Maxime> is no point forcing the user to use ext4 for its root
 Maxime> partition.

 Maxime> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>

Committed, thanks.
diff mbox

Patch

diff --git a/package/rpi-firmware/config.txt b/package/rpi-firmware/config.txt
index 2cabd68..a818762 100644
--- a/package/rpi-firmware/config.txt
+++ b/package/rpi-firmware/config.txt
@@ -6,9 +6,10 @@ 
 
 arm_freq=700
 core_freq=250
+kernel=zImage
 disable_overscan=1
 gpu_mem_256=100
 gpu_mem_512=100
 sdram_freq=400
 over_voltage=0
-cmdline="dwc_otg.fiq_fix_enable=1 sdhci-bcm2708.sync_after_dma=0 dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait"
+cmdline="dwc_otg.fiq_fix_enable=1 sdhci-bcm2708.sync_after_dma=0 dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootwait"