summaryrefslogtreecommitdiffstats
path: root/package/rpi-firmware
diff options
context:
space:
mode:
authorMaxime Hadjinlian <maxime.hadjinlian@gmail.com>2013-04-29 23:08:08 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-05-02 23:26:06 +0200
commit3d2c99565856fa96320019dfb7b81fd18e66311f (patch)
treeb34e7d098779d17188e3c4330f7d3494114ce91b /package/rpi-firmware
parentde341929676b6a1537de5e6140d6ab3c50482bac (diff)
downloadbuildroot-novena-3d2c99565856fa96320019dfb7b81fd18e66311f.tar.gz
buildroot-novena-3d2c99565856fa96320019dfb7b81fd18e66311f.zip
rpi-firmware: Fixup config.txt
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> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/rpi-firmware')
-rw-r--r--package/rpi-firmware/config.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/rpi-firmware/config.txt b/package/rpi-firmware/config.txt
index 2cabd683c..a818762df 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"