Bump to 3.2.2 (and include patch for 3.3-rc2).

Index: target/linux/x86/geos/config-default
===================================================================
--- target/linux/x86/geos/config-default        (revision 29953)
+++ target/linux/x86/geos/config-default        (working copy)
@@ -1,32 +1,27 @@
-# CONFIG_ACPI is not set
+# CONFIG_AMD_NB is not set
+# CONFIG_ATA_PIIX is not set
 CONFIG_DMI=y
 CONFIG_DMIID=y
-CONFIG_CPU_SUP_AMD=y
-CONFIG_GEODE_MFGPT_TIMER=y
-# CONFIG_GEODE_WDT is not set
-CONFIG_HAVE_PERF_EVENTS=y
+# CONFIG_DMI_SYSFS is not set
+# CONFIG_FB_GEODE is not set
+CONFIG_GENERIC_GPIO=y
+CONFIG_GPIOLIB=y
+CONFIG_GPIO_SYSFS=y
+# CONFIG_HIGHMEM64G is not set
 CONFIG_HWMON=y
 # CONFIG_HWMON_DEBUG_CHIP is not set
-# CONFIG_ISA is not set
-# CONFIG_INPUT is not set
-# CONFIG_KEYBOARD_ATKBD is not set
+# CONFIG_ISDN is not set
+# CONFIG_LEDS_GPIO is not set
 # CONFIG_M486 is not set
+# CONFIG_MATH_EMULATION is not set
 CONFIG_MGEODE_LX=y
-# CONFIG_MOUSE_PS2 is not set
-# CONFIG_PCIEPORTBUS is not set
-CONFIG_PCSPKR_PLATFORM=y
-CONFIG_PROCESSOR_SELECT=y
+CONFIG_GEOS=y
+CONFIG_PATA_CS5536=y
+# CONFIG_POWER_SUPPLY is not set
 # CONFIG_SCx200 is not set
 # CONFIG_SERIO_I8042 is not set
 # CONFIG_SERIO_LIBPS2 is not set
-CONFIG_X86_DEBUGCTLMSR=y
-# CONFIG_X86_DS is not set
-# CONFIG_X86_GENERIC is not set
-CONFIG_X86_INTERNODE_CACHE_SHIFT=5
-CONFIG_X86_L1_CACHE_SHIFT=5
-CONFIG_X86_TSC=y
-CONFIG_X86_USE_3DNOW=y
-CONFIG_X86_USE_PPRO_CHECKSUM=y
-CONFIG_GPIOLIB=y
-# CONFIG_CS5535_CLOCK_EVENT_SRC is not set
-CONFIG_PATA_CS5536=y
+# CONFIG_SERIO_SERPORT is not set
+CONFIG_THERMAL_HWMON=y
+# CONFIG_SENSORS_K10TEMP is not set
+# CONFIG_SENSORS_VIA_CPUTEMP is not set
Index: target/linux/x86/geos/base-files/etc/hotplug.d/button/50-reboot
===================================================================
--- target/linux/x86/geos/base-files/etc/hotplug.d/button/50-reboot     
(revision 0)
+++ target/linux/x86/geos/base-files/etc/hotplug.d/button/50-reboot     
(revision 0)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+logger -t button -p daemon.info "$BUTTON/$ACTION"
+
+case "$BUTTON/$ACTION" in
+
+reset/released)
+  reboot -f
+  ;;
+
+esac
+
+exit 0

Property changes on: 
target/linux/x86/geos/base-files/etc/hotplug.d/button/50-reboot
___________________________________________________________________
Added: svn:executable
   + *

Index: target/linux/x86/geos/base-files/etc/config/system
===================================================================
--- target/linux/x86/geos/base-files/etc/config/system  (revision 0)
+++ target/linux/x86/geos/base-files/etc/config/system  (revision 0)
@@ -0,0 +1,30 @@
+
+config system
+       option hostname OpenWrt
+       option timezone UTC
+
+config timeserver ntp
+       list server     0.openwrt.pool.ntp.org
+       list server     1.openwrt.pool.ntp.org
+       list server     2.openwrt.pool.ntp.org
+       list server     3.openwrt.pool.ntp.org
+
+config led
+       option default  0
+       option name     LAN
+       option sysfs    'geos:1'
+       option trigger  netdev
+       option mode     'tx rx'
+       option dev      'br-lan'
+
+config led
+       option default  0
+       option name     WiFi
+       option sysfs    'geos:2'
+       option trigger  'phy0tpt'
+
+config led
+       option default  0
+       option name     Health
+       option sysfs    'geos:3'
+       option trigger  'heartbeat'
Index: target/linux/x86/geos/target.mk
===================================================================
--- target/linux/x86/geos/target.mk     (revision 29953)
+++ target/linux/x86/geos/target.mk     (working copy)
@@ -1,9 +1,9 @@
+LINUX_VERSION:=3.2.1
 BOARDNAME:=Traverse Geos
 FEATURES:=squashfs jffs2 ext4 pci usb gpio
-GEOS_GPIO = $(if $(findstring 
2.6.32,$(LINUX_VERSION)),gpio-cs5535,gpio-cs5535-new)
 DEFAULT_PACKAGES += \
             kmod-crypto-hw-geode kmod-crypto-ocf \
-            kmod-$(GEOS_GPIO) kmod-gpio-nsc \
+            kmod-gpio-cs5535-new kmod-gpio-nsc \
             kmod-wdt-geode kmod-cs5535-clockevt kmod-cs5535-mfgpt \
             kmod-cs5536 \
             kmod-hwmon-core kmod-hwmon-lm90 \
@@ -15,6 +15,10 @@
             kmod-cfg80211 kmod-mac80211 \
             kmod-mppe kmod-pppoe kmod-pppoa kmod-pppol2tp \
             kmod-ath kmod-ath5k kmod-ath9k \
+            kmod-leds-gpio kmod-input-gpio-keys-polled \
+            kmod-button-hotplug \
+            kmod-ledtrig-heartbeat kmod-ledtrig-gpio \
+            kmod-ledtrig-netdev kmod-ledtrig-netfilter \
             kmod-cpu-msr \
             soloscli linux-atm br2684ctl bridge ppp ppp-mod-pppoa \
             pppdump pppstats \
@@ -30,6 +34,6 @@
     Build firmware images for Traverse Geos board
 endef
 
-define KernelPackage/$(GEOS_GPIO)/install
-     sed -i -r -e 's/$$$$$$$$/ mask=$(CS5535_MASK)/' 
$(1)/etc/modules.d/??-$(GEOS_GPIO)
+define KernelPackage/gpio-cs5535-new/install
+     sed -i -r -e 's/$$$$$$$$/ mask=$(CS5535_MASK)/' 
$(1)/etc/modules.d/??-gpio-cs5535-new
 endef
_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to