Last active
June 17, 2025 08:17
-
-
Save FlorianHeigl/1b06937a8f8de11d2e7f82d7fdd32ace to your computer and use it in GitHub Desktop.
sd_clean.sh bullion sd card reformat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#default case assumes interactive mode | |
interactive=1 | |
#default case assumes no SD card wiping. Only cleaning | |
wipesdcard=0 | |
#if included argumement is n or N then disable interactive mode | |
if [ "$1" == "n" ] || [ "$1" == "N" ]; then | |
interactive=0 | |
fi | |
if [ "$2" == "2" ]; then | |
wipesdcard=1 | |
fi | |
if [ $interactive -eq 1 ]; then | |
echo "This will clean the SD card. Data will be lost." | |
echo -n " Do you wish to continue [y/n]? " | |
read answer | |
if [ "$answer" != "y" ] && [ "$answer" != "Y" ]; then | |
echo " Terminating without changing anything." | |
exit | |
fi | |
fi | |
# source common function definitions | |
. /etc/rc.functions | |
#be sure SD card is not mounted. | |
#if [ $interactive -eq 1 ]; then | |
if mount |grep /mnt/sdcard >/dev/null; then | |
umount /mnt/sdcard | |
fi | |
#fi | |
#Device should be at 179 | |
#Need to point to first sector on the SD card, not the first partition. | |
#device=$(grep mmc /proc/devices | sed -n 's/^\([0-9]*\).*/\1/p') | |
device=179 | |
rm -f /dev/mmcblk0 | |
rm -f /dev/mmc | |
mknod /dev/mmcblk0 b $device 0 | |
if [ $wipesdcard -eq 1 ]; then | |
#Get SD card size for wiping device with zeros | |
# This is going to take hours.... | |
nblk=$(( $(cat /sys/block/mmcblk0/size) / 16 )) | |
dd bs=8192 seek=0 count=$nblk if=/dev/zero of=/dev/mmcblk0 | |
sleep 1 | |
fi | |
#Create a new partition (DOS based). | |
if [ $interactive -eq 1 ]; then | |
echo "Repartitioning..." | |
fi | |
#fdisk -z /dev/mmcblk0 >/dev/null | |
# fsdp will completely update entire boot sector (all 512 bytes) | |
fsdp /dev/mmcblk0 >/dev/null | |
if [ $wipesdcard -eq 0 ]; then | |
# zero out sectors after the boot sector until the first partition. | |
dd bs=512 seek=1 count=63 if=/dev/zero of=/dev/mmcblk0 | |
sleep 1 | |
fi | |
#Format new partition | |
if [ $interactive -eq 1 ]; then | |
echo "Formatting..." | |
fi | |
mknod /dev/mmc b $device 1 | |
sleep 1 | |
mkfs.vfat /dev/mmc | |
#mount partition | |
if [ $interactive -eq 1 ]; then | |
mount -t vfat /dev/mmc /mnt/sdcard | |
else | |
rm -f /dev/mmc | |
fi | |
rm /dev/mmcblk0 | |
# Change the SD CID in the config. | |
# When system is rebooted it will inform system that this SD card has been cleaned. | |
if [ $wipesdcard -eq 1 ]; then | |
echo "smc.lastknown_SD_CID=00000000000000000000000000000001" |get_config -s | |
else | |
echo "smc.lastknown_SD_CID=00000000000000000000000000000000" |get_config -s | |
fi | |
if [ $interactive -eq 1 ]; then | |
echo "SD card reformat is Complete" | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
_rfb_ip = getLocalIP(); | |
_rfb_port = rfbport(); | |
_rc_ssl = FV_0_seccryptkvm; | |
_session_id = getEricKey(); | |
__rc_perm = aclHasPermission("rc", "yes") == "yes"; | |
_htype = "http"; | |
_desc = "An app to use a Dell Server console"; | |
if (isWebSecure()) { _htype = "https"; } | |
if (!(__rc_perm)) { | |
_session_id = 0; | |
_desc = "Insufficient permission to run remote console"; | |
} | |
%> | |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Java Web Start to run Dell Remote Hardware Console Application --> | |
<jnlp | |
spec="1.0+" | |
codebase="<% writeEsc(_htype); %>://<% writeEsc(_rfb_ip); %>" > | |
<!-- Can't have href="rcgui.jnlp". Causes a second "GET rcgui.jnlp" that is served a login page. --> | |
<information> | |
<title>Dell Remote Console</title> | |
<vendor>Dell</vendor> | |
<description><% write(_desc); %></description> | |
<!-- Must have BMC, so no offline. <offline-allowed/> --> | |
<icon href="rcgui.gif"/> | |
</information> | |
<update check="always" policy="always"/> | |
<security> | |
<all-permissions/> | |
</security> | |
<resources os="Mac OS X"> | |
<j2se version="1.6+"/> | |
<jar href="rcgui.jar"/> | |
</resources> | |
<resources os="Linux"> | |
<j2se version="1.6+"/> | |
<jar href="rcgui.jar"/> | |
</resources> | |
<resources os="Windows"> | |
<j2se version="1.6+"/> | |
<jar href="rcgui.jar"/> | |
</resources> | |
<resources os="Windows"> | |
<nativelib href="DrvRedirNative2w32.jar"/> | |
</resources> | |
<application-desc main-class="nn.pp.rcgui.RemoteConsoleApplication" name="Dell Remote Console"> | |
<argument>-host</argument> | |
<argument><% writeEsc(_rfb_ip); %></argument> | |
<argument>-port</argument> | |
<argument><% writeEsc(_rfb_port); %></argument> | |
<argument>-ssl</argument> | |
<argument><% writeEsc(_rc_ssl); %></argument> | |
<argument>-session_id</argument> | |
<argument><% writeEsc(_session_id); %></argument> | |
</application-desc> | |
</jnlp> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vfile:/mnt/rd/lib/webpages# ls -l | |
total 3956 | |
-rw-r--r-- 1 floh winbind 6017 Jun 9 2023 CF_change_password.asp | |
-rw-r--r-- 1 floh winbind 5496 Jun 9 2023 CF_chassis_button.asp | |
-rw-r--r-- 1 floh winbind 10847 Jun 9 2023 CF_encryption.asp | |
-rw-r--r-- 1 floh winbind 28937 Jun 9 2023 CF_enterprise_lan.asp | |
-rw-r--r-- 1 floh winbind 4525 Jun 9 2023 CF_filter_list.asp | |
-rw-r--r-- 1 floh winbind 18147 Jun 9 2023 CF_functional_profiles.asp | |
-rw-r--r-- 1 floh winbind 10552 Jun 9 2023 CF_global_ipmi_settings.asp | |
-rw-r--r-- 1 floh winbind 14985 Jun 9 2023 CF_groups.asp | |
-rw-r--r-- 1 floh winbind 829 Jun 9 2023 CF_info.asp | |
-rw-r--r-- 1 floh winbind 4559 Jun 9 2023 CF_lan_destination_list.asp | |
-rw-r--r-- 1 floh winbind 7848 Jun 9 2023 CF_login_security_policy.asp | |
-rw-r--r-- 1 floh winbind 333 Jun 9 2023 CF_maintenance_lan.asp | |
-rw-r--r-- 1 floh winbind 4520 Jun 9 2023 CF_policy_list.asp | |
-rw-r--r-- 1 floh winbind 6220 Jun 9 2023 CF_primary_system_settings.asp | |
-rw-r--r-- 1 floh winbind 12768 Jun 9 2023 CF_settings.asp | |
-rw-r--r-- 1 floh winbind 21119 Jun 9 2023 CF_toc.asp | |
-rw-r--r-- 1 floh winbind 6985 Jun 9 2023 CF_user_blocking.asp | |
-rw-r--r-- 1 floh winbind 24264 Jun 9 2023 CF_users.asp | |
-rw-r--r-- 1 floh winbind 98304 May 22 2023 DrvRedirNative2.dll | |
-rw-r--r-- 1 floh winbind 46319 Jun 9 2023 DrvRedirNative2w32.jar | |
-rw-r--r-- 1 floh winbind 35 Jun 9 2023 EXT_IdentityCard.asp | |
-rw-r--r-- 1 floh winbind 913 May 22 2023 Info.gif | |
-rw-r--r-- 1 floh winbind 7112 May 22 2023 KFOmCnqEu92Fr1Mu4WxKOzY.woff2 | |
-rw-r--r-- 1 floh winbind 15744 May 22 2023 KFOmCnqEu92Fr1Mu4mxK.woff2 | |
-rw-r--r-- 1 floh winbind 9628 May 22 2023 KFOmCnqEu92Fr1Mu5mxKOzY.woff2 | |
-rw-r--r-- 1 floh winbind 15344 May 22 2023 KFOmCnqEu92Fr1Mu72xKOzY.woff2 | |
-rw-r--r-- 1 floh winbind 11872 May 22 2023 KFOmCnqEu92Fr1Mu7GxKOzY.woff2 | |
-rw-r--r-- 1 floh winbind 5560 May 22 2023 KFOmCnqEu92Fr1Mu7WxKOzY.woff2 | |
-rw-r--r-- 1 floh winbind 1484 May 22 2023 KFOmCnqEu92Fr1Mu7mxKOzY.woff2 | |
lrwxrwxrwx 1 floh winbind 48 Jun 9 2023 MIB.txt -> ../snmp/mibs/BULL-NOVASCALE-PLATFORMMNGT-MIB.txt | |
-rw-r--r-- 1 floh winbind 833 Jun 9 2023 MO_info.asp | |
-rw-r--r-- 1 floh winbind 5785 Jun 9 2023 MO_toc.asp | |
-rw-r--r-- 1 floh winbind 4689 Jun 9 2023 MT_ConnectedUsers.asp | |
-rw-r--r-- 1 floh winbind 2825 Jun 9 2023 MT_FRU.asp | |
-rw-r--r-- 1 floh winbind 3466 Jun 9 2023 MT_FirmwareVersion.asp | |
-rw-r--r-- 1 floh winbind 7859 Jun 9 2023 MT_IdentifyLed.asp | |
-rw-r--r-- 1 floh winbind 848 Jun 9 2023 MT_info.asp | |
-rw-r--r-- 1 floh winbind 35805 Jun 9 2023 MT_toc.asp | |
-rw-r--r-- 1 floh winbind 1275 Jun 9 2023 MT_wait_for_FRU.asp | |
-rw-r--r-- 1 floh winbind 11491 Jun 9 2023 OEM_nav.asp | |
-rw-r--r-- 1 floh winbind 973 May 22 2023 README.txt | |
-rw-r--r-- 1 floh winbind 9246 Jun 9 2023 SY_KVMPreview.asp | |
-rw-r--r-- 1 floh winbind 33852 Jun 9 2023 SY_Power.asp | |
-rw-r--r-- 1 floh winbind 1385 Jun 9 2023 SY_info.asp | |
-rw-r--r-- 1 floh winbind 9716 Jun 9 2023 SY_toc.asp | |
-rw-r--r-- 1 floh winbind 899 May 22 2023 Warning.gif | |
-rw-r--r-- 1 floh winbind 10463 Jun 9 2023 __topo_upload.asp | |
-rw-r--r-- 1 floh winbind 14408 Jun 9 2023 acl.asp | |
-rw-r--r-- 1 floh winbind 155 May 22 2023 activity_anim.gif | |
-rw-r--r-- 1 floh winbind 8059 Jun 9 2023 ajax_add_user_msg.asp | |
-rw-r--r-- 1 floh winbind 30 Jun 9 2023 ajax_add_user_msg_cmd.asp | |
-rw-r--r-- 1 floh winbind 13274 Jun 9 2023 ajax_board.asp | |
-rw-r--r-- 1 floh winbind 30 Jun 9 2023 ajax_bootDevice.asp | |
-rw-r--r-- 1 floh winbind 16133 Jun 9 2023 ajax_boot_device.asp | |
-rw-r--r-- 1 floh winbind 34 Jun 9 2023 ajax_exec_cmd.asp | |
-rw-r--r-- 1 floh winbind 40775 Jun 9 2023 ajax_fru.asp | |
-rw-r--r-- 1 floh winbind 38 Jun 9 2023 ajax_fw_update_cmd.asp | |
-rw-r--r-- 1 floh winbind 19257 May 22 2023 ajax_fw_upload_update_mesca3.js | |
-rw-r--r-- 1 floh winbind 15750 Jun 9 2023 ajax_fw_version.asp | |
-rw-r--r-- 1 floh winbind 34 Jun 9 2023 ajax_get_board_info.asp | |
-rw-r--r-- 1 floh winbind 34 Jun 9 2023 ajax_get_dimm_info.asp | |
-rw-r--r-- 1 floh winbind 32 Jun 9 2023 ajax_get_event_log.asp | |
-rw-r--r-- 1 floh winbind 28 Jun 9 2023 ajax_get_fru.asp | |
-rw-r--r-- 1 floh winbind 34 Jun 9 2023 ajax_get_fw_version.asp | |
-rw-r--r-- 1 floh winbind 42640 Jun 9 2023 ajax_get_log.asp | |
-rw-r--r-- 1 floh winbind 28 Jun 9 2023 ajax_get_log_cmd.asp | |
-rw-r--r-- 1 floh winbind 40 Jun 9 2023 ajax_get_sensor_status.asp | |
-rw-r--r-- 1 floh winbind 31 Jun 9 2023 ajax_hw_exclusion.asp | |
-rw-r--r-- 1 floh winbind 31 Jun 9 2023 ajax_identifyLed.asp | |
-rw-r--r-- 1 floh winbind 19368 Jun 9 2023 ajax_identify_led.asp | |
-rw-r--r-- 1 floh winbind 24529 Jun 9 2023 ajax_ipmi_hw_exclusion.asp | |
-rw-r--r-- 1 floh winbind 45171 Jun 9 2023 ajax_ipmi_sel.asp | |
-rw-r--r-- 1 floh winbind 7438 Jun 9 2023 ajax_ipmisensors.asp | |
-rw-r--r-- 1 floh winbind 7578 Jun 9 2023 ajax_messages.asp | |
-rw-r--r-- 1 floh winbind 5879 May 22 2023 ajax_messages_mesca3.js | |
-rw-r--r-- 1 floh winbind 39150 Jun 9 2023 ajax_partitioning.asp | |
-rw-r--r-- 1 floh winbind 31 Jun 9 2023 ajax_partitioning_cmd.asp | |
-rw-r--r-- 1 floh winbind 35 Jun 9 2023 ajax_power_cmd.asp | |
-rw-r--r-- 1 floh winbind 21893 Jun 9 2023 ajax_reset.asp | |
-rw-r--r-- 1 floh winbind 31 Jun 9 2023 ajax_reset_device.asp | |
-rw-r--r-- 1 floh winbind 26 Jun 9 2023 ajax_sel_cmd.asp | |
-rw-r--r-- 1 floh winbind 23185 May 22 2023 ajax_sensor_status.js | |
-rw-r--r-- 1 floh winbind 27783 May 22 2023 ajax_sensor_status_mesca3.js | |
-rw-r--r-- 1 floh winbind 14240 May 22 2023 animation-min.js | |
-rw-r--r-- 1 floh winbind 505 May 22 2023 arrow_close_open.gif | |
-rw-r--r-- 1 floh winbind 864 May 22 2023 arrow_close_out.gif | |
-rw-r--r-- 1 floh winbind 877 May 22 2023 arrow_close_over.gif | |
-rw-r--r-- 1 floh winbind 505 May 22 2023 arrow_open_close.gif | |
-rw-r--r-- 1 floh winbind 860 May 22 2023 arrow_open_out.gif | |
-rw-r--r-- 1 floh winbind 852 May 22 2023 arrow_open_over.gif | |
-rw-r--r-- 1 floh winbind 161703 May 22 2023 atos_bkg_sequana_login_anime.gif | |
-rw-r--r-- 1 floh winbind 1955 May 22 2023 atos_logo.gif | |
-rw-r--r-- 1 floh winbind 1244 May 22 2023 atos_logo_tiny.gif | |
-rw-r--r-- 1 floh winbind 2142 May 22 2023 atos_sequana_logo_tiny.gif | |
-rw-r--r-- 1 floh winbind 20869 Jun 9 2023 auth.asp | |
-rw-r--r-- 1 floh winbind 20036 Jun 9 2023 authopt.asp | |
-rw-r--r-- 1 floh winbind 20849 Jun 9 2023 biosupdate.asp | |
-rw-r--r-- 1 floh winbind 8704 Jun 9 2023 board.asp | |
-rw-r--r-- 1 floh winbind 3484 May 22 2023 bull_atos_logo.gif | |
-rw-r--r-- 1 floh winbind 14282 Jun 9 2023 cert.asp | |
-rw-r--r-- 1 floh winbind 0 Jun 9 2023 configuration.asp | |
-rw-r--r-- 1 floh winbind 13265 May 22 2023 connection-min.js | |
-rw-r--r-- 1 floh winbind 913 May 22 2023 console_tiny.gif | |
-rw-r--r-- 1 floh winbind 963 May 22 2023 csrf.js | |
-rw-r--r-- 1 floh winbind 1582 May 22 2023 ddpart-min.js | |
-rw-r--r-- 1 floh winbind 3897 May 22 2023 ddpart.js | |
-rw-r--r-- 1 floh winbind 10313 May 22 2023 dhtml.js | |
-rw-r--r-- 1 floh winbind 23689 May 22 2023 dragdrop-min.js | |
-rw-r--r-- 1 floh winbind 9363 May 22 2023 element-min.js | |
-rw-r--r-- 1 floh winbind 866 May 22 2023 elink_down.gif | |
-rw-r--r-- 1 floh winbind 866 May 22 2023 elink_up.gif | |
-rw-r--r-- 1 floh winbind 443 Jun 9 2023 empty.asp | |
-rw-r--r-- 1 floh winbind 100 May 22 2023 empty.gif | |
-rw-r--r-- 1 floh winbind 14588 May 22 2023 event-min.js | |
-rw-r--r-- 1 floh winbind 354 May 22 2023 event_auth.js | |
-rw-r--r-- 1 floh winbind 7230 Jun 9 2023 event_log.asp | |
-rw-r--r-- 1 floh winbind 13879 Jun 9 2023 event_log_settings.asp | |
-rw-r--r-- 1 floh winbind 32988 May 22 2023 favicon.ico | |
-rw-r--r-- 1 floh winbind 20874 Jun 9 2023 fpgaupdate.asp | |
-rw-r--r-- 1 floh winbind 712 Jun 9 2023 fw_update_backup_image.asp | |
-rw-r--r-- 1 floh winbind 12669 Jun 9 2023 fwupdate.asp | |
-rw-r--r-- 1 floh winbind 7706 Jun 9 2023 fwupdated.asp | |
-rw-r--r-- 1 floh winbind 1648 Jun 9 2023 fwupdprog.asp | |
-rw-r--r-- 1 floh winbind 11101 Jun 9 2023 header.asp | |
-rw-r--r-- 1 floh winbind 17010 Jun 9 2023 help_functional_profiles.asp | |
-rw-r--r-- 1 floh winbind 9084 Jun 9 2023 help_hotkeys.asp | |
-rw-r--r-- 1 floh winbind 4551 Jun 9 2023 home.asp | |
-rw-r--r-- 1 floh winbind 97416 May 22 2023 ict.dll | |
-rwxr-xr-x 1 floh winbind 54072 May 22 2023 ict.so | |
drwxr-xr-x 2 floh winbind 1024 Jun 9 2023 images | |
-rw-r--r-- 1 floh winbind 1172 May 22 2023 information.gif | |
-rw-r--r-- 1 floh winbind 4798 Jun 9 2023 ipmi_filter_edit.asp | |
-rw-r--r-- 1 floh winbind 5989 Jun 9 2023 ipmi_lan_dest_edit.asp | |
-rw-r--r-- 1 floh winbind 5749 Jun 9 2023 ipmi_policy_edit.asp | |
-rw-r--r-- 1 floh winbind 0 Jun 9 2023 ipmisel.asp | |
-rw-r--r-- 1 floh winbind 34403 Jun 9 2023 ipmisensors.asp | |
-rw-r--r-- 1 floh winbind 4925 May 22 2023 json-min.js | |
-rw-r--r-- 1 floh winbind 142257 Jun 9 2023 jta20.jar | |
-rw-r--r-- 1 floh winbind 17211 Jun 9 2023 km_settings.asp | |
-rw-r--r-- 1 floh winbind 3535 May 22 2023 lmb_mesca3.gif | |
-rw-r--r-- 1 floh winbind 2210 May 22 2023 loading.gif | |
-rw-r--r-- 1 floh winbind 896 May 22 2023 logout.gif | |
-rw-r--r-- 1 floh winbind 846 Jun 9 2023 logout_link.asp | |
-rw-r--r-- 1 floh winbind 0 Jun 9 2023 maintenance.asp | |
-rw-r--r-- 1 floh winbind 270 May 22 2023 max_gray.gif | |
-rw-r--r-- 1 floh winbind 281 May 22 2023 max_green.gif | |
-rw-r--r-- 1 floh winbind 585 May 22 2023 max_red.gif | |
-rw-r--r-- 1 floh winbind 853 May 22 2023 max_yellow.gif | |
-rw-r--r-- 1 floh winbind 20859 Jun 9 2023 mcpldupdate.asp | |
-rw-r--r-- 1 floh winbind 845 May 22 2023 menu_arrow.gif | |
-rw-r--r-- 1 floh winbind 845 May 22 2023 menu_arrow_hitachi.gif | |
-rw-r--r-- 1 floh winbind 8416 May 22 2023 messages-min.js | |
-rw-r--r-- 1 floh winbind 12062 May 22 2023 messages.js | |
-rw-r--r-- 1 floh winbind 2396 May 22 2023 messageshtml | |
-rw-r--r-- 1 floh winbind 7585 Jun 9 2023 mfwpreempt.asp | |
-rw-r--r-- 1 floh winbind 34923 Jun 9 2023 mfwupdate.asp | |
-rw-r--r-- 1 floh winbind 7538 Jun 9 2023 mfwupdated.asp | |
-rw-r--r-- 1 floh winbind 917 May 22 2023 minus_tiny.gif | |
-rw-r--r-- 1 floh winbind 49844 Jun 9 2023 mnewfwupdate.asp | |
-rw-r--r-- 1 floh winbind 5765 May 22 2023 module_mesca3.gif | |
-rw-r--r-- 1 floh winbind 5695 May 22 2023 module_mesca3_blurred.gif | |
-rw-r--r-- 1 floh winbind 0 Jun 9 2023 monitoring.asp | |
-rw-r--r-- 1 floh winbind 1919 May 22 2023 nav_page.css | |
-rw-r--r-- 1 floh winbind 2887 May 22 2023 nav_pages.js | |
-rw-r--r-- 1 floh winbind 3171 May 22 2023 nav_pages_mesca3.js | |
-rw-r--r-- 1 floh winbind 20879 Jun 9 2023 nbbcpldupdate_left.asp | |
-rw-r--r-- 1 floh winbind 20881 Jun 9 2023 nbbcpldupdate_right.asp | |
-rw-r--r-- 1 floh winbind 2111 May 22 2023 new_bull_atos_logo.gif | |
-rw-r--r-- 1 floh winbind 1338 May 22 2023 new_bull_logo.gif | |
-rw-r--r-- 1 floh winbind 251 May 22 2023 new_help.gif | |
-rw-r--r-- 1 floh winbind 157 May 22 2023 new_logout.gif | |
-rw-r--r-- 1 floh winbind 17679 Jun 9 2023 newfwupdate.asp | |
-rw-r--r-- 1 floh winbind 5157 Jun 9 2023 newfwupdate_page.asp | |
-rw-r--r-- 1 floh winbind 8483 May 22 2023 newstyle-hitachi.css | |
-rw-r--r-- 1 floh winbind 8568 May 22 2023 newstyle-oem2.css | |
-rw-r--r-- 1 floh winbind 8476 May 22 2023 newstyle.css | |
-rw-r--r-- 1 floh winbind 2721 May 22 2023 newtoc.js | |
-rw-r--r-- 1 floh winbind 1415 May 22 2023 no_logo.gif | |
-rw-r--r-- 1 floh winbind 1752 May 22 2023 oem.js | |
-rw-r--r-- 1 floh winbind 3731 May 22 2023 oem_dell_login_logo.gif | |
-rw-r--r-- 1 floh winbind 4673 May 22 2023 oem_dell_logo.jpg | |
-rw-r--r-- 1 floh winbind 22094 May 22 2023 oem_hitachi_bkg_login.jpg | |
-rw-r--r-- 1 floh winbind 2351 May 22 2023 oem_hitachi_logo.gif | |
-rw-r--r-- 1 floh winbind 16439 May 22 2023 oem_quantum_bkg_login.jpg | |
-rw-r--r-- 1 floh winbind 1390 May 22 2023 partstyle.css | |
-rw-r--r-- 1 floh winbind 20858 Jun 9 2023 pcpldupdate.asp | |
-rw-r--r-- 1 floh winbind 20877 Jun 9 2023 pebflashupdate.asp | |
drwxr-xr-x 2 floh winbind 1024 Jun 9 2023 pie | |
-rw-r--r-- 1 floh winbind 917 May 22 2023 plus_tiny.gif | |
-rw-r--r-- 1 floh winbind 20877 Jun 9 2023 pm1cpldupdate.asp | |
-rw-r--r-- 1 floh winbind 20877 Jun 9 2023 pm2cpldupdate.asp | |
-rw-r--r-- 1 floh winbind 716 Jun 9 2023 power_mgmt_backup_image.asp | |
-rw-r--r-- 1 floh winbind 189 Jun 9 2023 prestart.asp | |
-rw-r--r-- 1 floh winbind 5838 Jun 9 2023 pwchangeforced.asp | |
-rw-r--r-- 1 floh winbind 33577 Jun 9 2023 rc_settings.asp | |
-rw-r--r-- 1 floh winbind 618084 Jun 9 2023 rcgui-oem.jar | |
-rw-r--r-- 1 floh winbind 1887 Jun 9 2023 rcgui-oem.jnlp | |
-rw-r--r-- 1 floh winbind 870 May 22 2023 rcgui.gif | |
-rw-r--r-- 1 floh winbind 618098 Jun 9 2023 rcgui.jar | |
-rw-r--r-- 1 floh winbind 1891 Jun 9 2023 rcgui.jnlp | |
-rw-r--r-- 1 floh winbind 1025 May 22 2023 read_eeprom.gif | |
-rw-r--r-- 1 floh winbind 193 May 22 2023 refresh.gif | |
-rw-r--r-- 1 floh winbind 921 May 22 2023 refresh_sensors.gif | |
-rw-r--r-- 1 floh winbind 24078 Jun 9 2023 reset.asp | |
-rw-r--r-- 1 floh winbind 21903 May 22 2023 sel-min.js | |
-rw-r--r-- 1 floh winbind 31457 May 22 2023 sel.js | |
-rw-r--r-- 1 floh winbind 1313 May 22 2023 sel_ring.png | |
-rw-r--r-- 1 floh winbind 3609 May 22 2023 selhtml | |
-rw-r--r-- 1 floh winbind 31780 May 22 2023 sensor-min.js | |
-rw-r--r-- 1 floh winbind 51584 May 22 2023 sensor.js | |
-rw-r--r-- 1 floh winbind 866 May 22 2023 sensor_gray.gif | |
-rw-r--r-- 1 floh winbind 124 May 22 2023 sensor_green.gif | |
-rw-r--r-- 1 floh winbind 124 May 22 2023 sensor_red.gif | |
-rw-r--r-- 1 floh winbind 124 May 22 2023 sensor_yellow.gif | |
-rw-r--r-- 1 floh winbind 1787 May 22 2023 sensorhtml | |
-rw-r--r-- 1 floh winbind 3229 May 22 2023 sev_critical.png | |
-rw-r--r-- 1 floh winbind 3171 May 22 2023 sev_info.png | |
-rw-r--r-- 1 floh winbind 3059 May 22 2023 sev_warning.png | |
-rw-r--r-- 1 floh winbind 10355 Jun 9 2023 snmp.asp | |
-rw-r--r-- 1 floh winbind 6384 May 22 2023 tabview-amm-hitachi.css | |
-rw-r--r-- 1 floh winbind 6384 May 22 2023 tabview-amm.css | |
-rw-r--r-- 1 floh winbind 10029 May 22 2023 tabview-min.js | |
-rw-r--r-- 1 floh winbind 5099 Jun 9 2023 telnet.asp | |
-rw-r--r-- 1 floh winbind 15692 Jun 9 2023 time.asp | |
-rw-r--r-- 1 floh winbind 2809 Jun 9 2023 title_app.asp | |
-rw-r--r-- 1 floh winbind 3675 Jun 9 2023 title_app_noaccess.asp | |
drwxr-xr-x 2 floh winbind 1024 Jun 9 2023 tmp | |
-rw-r--r-- 1 floh winbind 4749 May 22 2023 ubox_mesca3.gif | |
-rw-r--r-- 1 floh winbind 39926 Jun 9 2023 um.asp | |
-rw-r--r-- 1 floh winbind 2250 May 22 2023 update_progress.gif | |
-rw-r--r-- 1 floh winbind 26752 Jun 9 2023 vfloppy_redir.asp | |
-rw-r--r-- 1 floh winbind 236 May 22 2023 warning.gif | |
-rw-r--r-- 1 floh winbind 1118 May 22 2023 warning_severe.gif | |
-rw-r--r-- 1 floh winbind 1 Jun 9 2023 webs_cron.asp | |
-rw-r--r-- 1 floh winbind 37523 May 22 2023 yahoo-dom-event.js | |
-rw-r--r-- 1 floh winbind 7090 May 22 2023 yahoo-min.js |
mesca2 vs mesca3 in web ui files:
vfile:/mnt/rd/lib/webpages# grep -l -i mesca2 *
MT_toc.asp
pm1cpldupdate.asp
pm2cpldupdate.asp
vfile:/mnt/rd/lib/webpages# grep -l -i mesca3 *
CF_settings.asp
MT_toc.asp
ajax_fru.asp
ajax_ipmi_sel.asp
ajax_ipmisensors.asp
ajax_messages.asp
ajax_sensor_status_mesca3.js
messageshtml
mfwpreempt.asp
mfwupdate.asp
mnewfwupdate.asp
selhtml
sensor-min.js
sensor.js
title_app.asp
update:
- i tried this, didn't work
- installed relevant parts into a chroot on an odroid c2 (ARM cpu)
- card still not detected, it's either the get_config command from the format script
possible causes:
- sd card size. i had a 32GB card, might need 4GB. one of the sellers that has used bullion S also had some 4GB cards listed.
- card different structure / difference in headers
need to:
- get a 4GB card
- get a bus pirate and debug clamp, copy the older EMM firmware
the latter makes a lot of sense since then i can hopefully fix the jnlp start so openwebstart works.
though the newer EMM FW has signatures, so might not be all that easy.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the jnlp file should be enough to get the java web ui started
future me: it is not (yet)